From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <pve-devel-bounces@lists.proxmox.com> Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id 024231FF173 for <inbox@lore.proxmox.com>; Mon, 27 Jan 2025 12:30:35 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 52ABE2886D; Mon, 27 Jan 2025 12:30:00 +0100 (CET) From: Fiona Ebner <f.ebner@proxmox.com> To: pve-devel@lists.proxmox.com Date: Mon, 27 Jan 2025 12:29:15 +0100 Message-Id: <20250127112923.31703-9-f.ebner@proxmox.com> X-Mailer: git-send-email 2.39.5 In-Reply-To: <20250127112923.31703-1-f.ebner@proxmox.com> References: <20250127112923.31703-1-f.ebner@proxmox.com> MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL -0.044 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record T_SCC_BODY_TEXT_LINE -0.01 - Subject: [pve-devel] [PATCH qemu-server v5 08/16] vzdump: skip all special sections X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion <pve-devel.lists.proxmox.com> List-Unsubscribe: <https://lists.proxmox.com/cgi-bin/mailman/options/pve-devel>, <mailto:pve-devel-request@lists.proxmox.com?subject=unsubscribe> List-Archive: <http://lists.proxmox.com/pipermail/pve-devel/> List-Post: <mailto:pve-devel@lists.proxmox.com> List-Help: <mailto:pve-devel-request@lists.proxmox.com?subject=help> List-Subscribe: <https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel>, <mailto:pve-devel-request@lists.proxmox.com?subject=subscribe> Reply-To: Proxmox VE development discussion <pve-devel@lists.proxmox.com> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" <pve-devel-bounces@lists.proxmox.com> Also log an informational message just like for pending and snapshot sections. Add a comment about it to parse_vm_config() in the hope that the behavior is noted when introducing a future special section. Signed-off-by: Fiona Ebner <f.ebner@proxmox.com> --- PVE/QemuServer.pm | 1 + PVE/VZDump/QemuServer.pm | 12 ++++++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index e0cca0e4..e1c9d3f5 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -2198,6 +2198,7 @@ sub parse_vm_config { return if !defined($raw); + # note that pending, snapshot and special sections are currently skipped when a backup is taken my $res = { digest => Digest::SHA::sha1_hex($raw), snapshots => {}, diff --git a/PVE/VZDump/QemuServer.pm b/PVE/VZDump/QemuServer.pm index 72a76e65..cdaaa3a2 100644 --- a/PVE/VZDump/QemuServer.pm +++ b/PVE/VZDump/QemuServer.pm @@ -232,20 +232,21 @@ sub assemble { my $found_snapshot; my $found_pending; - my $found_cloudinit; + my $found_special; while (defined (my $line = <$conffd>)) { next if $line =~ m/^\#vzdump\#/; # just to be sure next if $line =~ m/^\#qmdump\#/; # just to be sure if ($line =~ m/^\[(.*)\]\s*$/) { if ($1 =~ m/^PENDING$/i) { $found_pending = 1; - } elsif ($1 =~ m/^special:cloudinit$/) { - $found_cloudinit = 1; + } elsif ($1 =~ m/^special:.*$/) { + $found_special = 1; } else { $found_snapshot = 1; } } - next if $found_snapshot || $found_pending || $found_cloudinit; # skip all snapshots,pending changes and cloudinit config data + # skip all snapshots, pending changes and special sections + next if $found_snapshot || $found_pending || $found_special; if ($line =~ m/^unused\d+:\s*(\S+)\s*/) { $self->loginfo("skip unused drive '$1' (not included into backup)"); @@ -266,6 +267,9 @@ sub assemble { } } + if ($found_special) { + $self->loginfo("special config section found (not included into backup)"); + } if ($found_snapshot) { $self->loginfo("snapshots found (not included into backup)"); } -- 2.39.5 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel