prune_backups: fix message

For prune selections, it doesn't matter what the current time is,
only the timestamps of the backups matter.

Signed-off-by: Fabian Ebner <f.ebner@proxmox.com>
This commit is contained in:
Fabian Ebner
2020-08-20 13:50:09 +02:00
committed by Thomas Lamprecht
parent 93d1812e5a
commit 7b73d327b5
2 changed files with 4 additions and 5 deletions

View File

@ -16,9 +16,8 @@ __PACKAGE__->register_method ({
name => 'dryrun',
path => '',
method => 'GET',
description => "Get prune information for backups. NOTE: this is only a preview and might not be exactly " .
"what a subsequent prune call does, if the hour changes or if backups are removed/added " .
"in the meantime.",
description => "Get prune information for backups. NOTE: this is only a preview and might not be " .
"what a subsequent prune call does if backups are removed/added in the meantime.",
permissions => {
check => ['perm', '/storage/{storage}', ['Datastore.Audit', 'Datastore.AllocateSpace'], any => 1],
},

View File

@ -932,8 +932,8 @@ our $cmddef = {
return if !$dryrun;
print "NOTE: this is only a preview and might not be exactly what a subsequent prune call does,\n" .
"if the hour changes or if backups are removed/added in the meantime.\n\n";
print "NOTE: this is only a preview and might not be what a subsequent\n" .
"prune call does if backups are removed/added in the meantime.\n\n";
my @sorted = sort {
my $vmcmp = PVE::Tools::safe_compare($a->{vmid}, $b->{vmid}, sub { $_[0] <=> $_[1] });