mirror of https://github.com/digint/btrbk
btrbk: do not warn on non-parseable btrfs mountpoint
Many people use whitespace even in mountpoints, silently ignore (loglevel=info) non-parseable btrfs mountpoints. Btrbk does not support file names with whitespace or special characters by design, and specifying such mountpoints in the configuration file fails anyway.pull/235/head
parent
ffba3e47c6
commit
391e50b872
2
btrbk
2
btrbk
|
@ -1855,7 +1855,7 @@ sub btrfs_mountpoint($)
|
|||
next;
|
||||
}
|
||||
unless($mnt->{file} =~ /^$file_match$/) {
|
||||
WARN "Ignoring non-parseable btrfs mountpoint on $host: \"$mnt->{file}\"";
|
||||
INFO "Ignoring non-parseable btrfs mountpoint on $host: \"$mnt->{file}\"";
|
||||
next;
|
||||
}
|
||||
unless($mnt->{MNTOPS}->{subvolid}) {
|
||||
|
|
Loading…
Reference in New Issue