duplicity handler: warn if vsnames or vsinclude is enabled while vservers support...
authorintrigeri <intrigeri@boum.org>
Tue, 17 Jan 2006 22:21:39 +0000 (22:21 +0000)
committerintrigeri <intrigeri@boum.org>
Tue, 17 Jan 2006 22:21:39 +0000 (22:21 +0000)
ChangeLog
handlers/dup

index 248ea97d8369803f46649390bba7c5901fcb5d72..6c796088d4788ce757117ec886b5991fdc17f919 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 2e4312b0d34ad5d62007a79633b3494ab722e691..5970694b03f9b6d5ce3999287bca83daf7e3c948 100644 (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 ###