]> git.proxmox.com Git - pve-manager.git/commitdiff
pve6to7: fix description-length warning for guests
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 2 Jul 2021 09:49:48 +0000 (11:49 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 2 Jul 2021 09:51:01 +0000 (11:51 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
PVE/CLI/pve6to7.pm

index 5208c1702f65bb3903f5c6b044ff0eb1d77558c2..60edac11b02db84b93cc1968d9c023fdc842dc98 100644 (file)
@@ -703,7 +703,7 @@ sub check_description_lengths {
        push @$affected_guests, "VM $vmid" if defined($desc) && length($desc) > 8 * 1024;
     }
     if (scalar($affected_guests->@*) > 0) {
-       log_warn("Node config description of the following nodes too long for new limit of 64 KiB:\n"
+       log_warn("Guest config description of the following virtual-guests too long for new limit of 64 KiB:\n"
            ."    * " . join("\n    * ", $affected_guests->@*));
     } else {
        log_pass("All guest config descriptions fit in the new limit of 8 KiB");