]> git.proxmox.com Git - pve-guest-common.git/blobdiff - src/PVE/VZDump/Common.pm
vzdump: comment that vzdump.cron is the legacy parser
[pve-guest-common.git] / src / PVE / VZDump / Common.pm
index 8b8b75ac95dffde8754a168d10a541f6e3562240..4b0e8e0569a5dd12d061c60f1ddbf0425a3c1dc6 100644 (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) = @_;