fix indentation of $prune_backups_format

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht
2020-09-03 18:21:09 +02:00
parent 8ca00a63f7
commit 48d0cd02c1

View File

@ -50,35 +50,35 @@ my %prune_option = (
); );
our $prune_backups_format = { our $prune_backups_format = {
'keep-last' => { 'keep-last' => {
%prune_option, %prune_option,
description => 'Keep the last <N> backups.', description => 'Keep the last <N> backups.',
}, },
'keep-hourly' => { 'keep-hourly' => {
%prune_option, %prune_option,
description => 'Keep backups for the last <N> different hours. If there is more' . description => 'Keep backups for the last <N> different hours. If there is more' .
'than one backup for a single hour, only the latest one is kept.' 'than one backup for a single hour, only the latest one is kept.'
}, },
'keep-daily' => { 'keep-daily' => {
%prune_option, %prune_option,
description => 'Keep backups for the last <N> different days. If there is more' . description => 'Keep backups for the last <N> different days. If there is more' .
'than one backup for a single day, only the latest one is kept.' 'than one backup for a single day, only the latest one is kept.'
}, },
'keep-weekly' => { 'keep-weekly' => {
%prune_option, %prune_option,
description => 'Keep backups for the last <N> different weeks. If there is more' . description => 'Keep backups for the last <N> different weeks. If there is more' .
'than one backup for a single week, only the latest one is kept.' 'than one backup for a single week, only the latest one is kept.'
}, },
'keep-monthly' => { 'keep-monthly' => {
%prune_option, %prune_option,
description => 'Keep backups for the last <N> different months. If there is more' . description => 'Keep backups for the last <N> different months. If there is more' .
'than one backup for a single month, only the latest one is kept.' 'than one backup for a single month, only the latest one is kept.'
}, },
'keep-yearly' => { 'keep-yearly' => {
%prune_option, %prune_option,
description => 'Keep backups for the last <N> different years. If there is more' . description => 'Keep backups for the last <N> different years. If there is more' .
'than one backup for a single year, only the latest one is kept.' 'than one backup for a single year, only the latest one is kept.'
}, },
}; };
PVE::JSONSchema::register_format('prune-backups', $prune_backups_format, \&validate_prune_backups); PVE::JSONSchema::register_format('prune-backups', $prune_backups_format, \&validate_prune_backups);
sub validate_prune_backups { sub validate_prune_backups {