Skip to content
Snippets Groups Projects
Commit 4beb2613 authored by intrigeri's avatar intrigeri
Browse files

duplicity handler: warn if vsnames or vsinclude is enabled while vservers...

duplicity handler: warn if vsnames or vsinclude is enabled while vservers support is disabled in backupninja.conf

parent b91c3279
Branches
Tags
No related merge requests found
...@@ -10,6 +10,8 @@ version 0.9.3 -- unreleased ...@@ -10,6 +10,8 @@ version 0.9.3 -- unreleased
duplicity: duplicity:
. fixed (again...) globbing in include and exclude options (Debian bug . fixed (again...) globbing in include and exclude options (Debian bug
#348022, follow-up to #338796) #348022, follow-up to #338796)
. warn if vsnames or vsinclude is enabled while vservers support is
disabled in backupninja.conf
ninjahelper changes ninjahelper changes
rdiff.helper: rdiff.helper:
. fixed errors in create remote dir . fixed errors in create remote dir
......
...@@ -57,6 +57,9 @@ if [ "$vservers" == "yes" ]; then ...@@ -57,6 +57,9 @@ if [ "$vservers" == "yes" ]; then
else else
[ -z "$vsinclude" ] || warning 'vsnames is empty, vsinclude configuration lines will be ignored' [ -z "$vsinclude" ] || warning 'vsnames is empty, vsinclude configuration lines will be ignored'
fi fi
else
[ -z "$vsinclude" ] || warning 'vservers support disabled in backupninja.conf, vsincludes configuration lines will be ignored'
[ -z "$vsnames" ] || warning 'vservers support disabled in backupninja.conf, vsnames configuration line will be ignored'
fi fi
### see if we can login ### ### see if we can login ###
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment