diff options
Diffstat (limited to 'draksnapshot-config')
-rwxr-xr-x | draksnapshot-config | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/draksnapshot-config b/draksnapshot-config index c2a7a7f..f749c52 100755 --- a/draksnapshot-config +++ b/draksnapshot-config @@ -268,9 +268,11 @@ sub save() { @{$exclude_list->{data}} = qw(/media /mnt /proc /sys /tmp /var/run /var/tmp *~); } + my $where2snapshot = $where->get_text; + save_keyword('backup', map { join("\t", 'backup', @$_[0], 'localhost/') } @{$backup_list->{data}}); save_keyword('exclude', map { join("\t", 'exclude', @$_[0]) } @{$exclude_list->{data}}); - save_keyword('snapshot_root', join("\t", 'snapshot_root', $where->get_text)); + save_keyword('snapshot_root', join("\t", 'snapshot_root', $where2snapshot)); generate_cron_entry(); } |