vzdump: comment that vzdump.cron is the legacy parser

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2022-11-12 16:30:02 +01:00
parent 57f3baeb76
commit a90246abb1

View File

@ -10,9 +10,12 @@ use PVE::Storage;
use PVE::Cluster qw(cfs_register_file);
use PVE::JSONSchema qw(get_standard_option);
cfs_register_file('vzdump.cron',
\&parse_vzdump_cron_config,
\&write_vzdump_cron_config);
# NOTE: this is the legacy config, nowadays jobs.cfg is used (handled in pve-manager)
cfs_register_file(
'vzdump.cron',
\&parse_vzdump_cron_config,
\&write_vzdump_cron_config,
);
my $dowhash_to_dow = sub {
my ($d, $num) = @_;