diff options
author | intrigeri <intrigeri@boum.org> | 2008-06-24 15:39:03 +0000 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2008-06-24 15:39:03 +0000 |
commit | ad8db347dcc0114c6d32207ecd2f00abd5d81986 (patch) | |
tree | 69f3362f7e017d1940c14e1cbd6c7bdafef8c4f6 | |
parent | 56617bfc5bd846f660ac015d7ee349e0134c7a43 (diff) | |
download | backupninja-ad8db347dcc0114c6d32207ecd2f00abd5d81986.tar.gz backupninja-ad8db347dcc0114c6d32207ecd2f00abd5d81986.tar.bz2 |
dup: actually allow to backup only VServers, by relaxing $include test
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | handlers/dup.in | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -15,6 +15,7 @@ version 0.9.6 -- unreleased new syntax. . Support every duplicity-supported transport with new configuration option desturl (Closes: #483712, #346040, Trac#2). + . Actually allow to backup only VServers, by relaxing $include test. ldap: . support HDB backend just as the BDB one, and make message clearer when no supported backend is found (Closes: #476910) diff --git a/handlers/dup.in b/handlers/dup.in index 0f4e58e..2854974 100644 --- a/handlers/dup.in +++ b/handlers/dup.in @@ -35,7 +35,7 @@ destdir=${destdir%/} ### SANITY CHECKS ############################################################## [ -n "$desturl" -o -n "$destdir" ] || fatal "The destination directory (destdir) must be set when desturl is not used." -[ -n "$include" ] || fatal "No source includes specified" +[ -n "$include" -o -n "$vsinclude" ] || fatal "No source includes specified" [ -n "$password" ] || fatal "The password option must be set." ### VServers |