mhop/fhem-mirror

98_backup.pm

eszych opened this issue · 0 comments

Would like to have "--one-file-system" included in 98_bakup.pm
This way the tar command will not dive into any mounted filesystem and add it to the backup...tar.gz file.

if (!defined($backupcmd)) {
if (lc($symlink) eq "no") {
$tarOpts = "cf --one-file-system";
} else {
$tarOpts = "chf --one-file-system";
}

Thanks for considering the change.