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

This commit is contained in:
intrigeri 2006-01-17 22:21:39 +00:00
parent b91c32792d
commit 4beb261328
2 changed files with 5 additions and 0 deletions

View File

@ -10,6 +10,8 @@ version 0.9.3 -- unreleased
duplicity:
. fixed (again...) globbing in include and exclude options (Debian bug
#348022, follow-up to #338796)
. warn if vsnames or vsinclude is enabled while vservers support is
disabled in backupninja.conf
ninjahelper changes
rdiff.helper:
. fixed errors in create remote dir

View File

@ -57,6 +57,9 @@ if [ "$vservers" == "yes" ]; then
else
[ -z "$vsinclude" ] || warning 'vsnames is empty, vsinclude configuration lines will be ignored'
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
### see if we can login ###