diff options
author | Micah Anderson <micah@riseup.net> | 2007-11-24 23:44:07 +0000 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2007-11-24 23:44:07 +0000 |
commit | 268494b0c8ddf8df68db8acb77e01be82a0591ba (patch) | |
tree | 58ff2746e84e3a25061591e05ccb0c324e330f28 /handlers | |
parent | ca62d94c56df7ee24a46c0de657930b48a04711d (diff) | |
download | backupninja-268494b0c8ddf8df68db8acb77e01be82a0591ba.tar.gz backupninja-268494b0c8ddf8df68db8acb77e01be82a0591ba.tar.bz2 |
allow for exclude only configurations to rdiff-backup handler: Closes Trac#21
Diffstat (limited to 'handlers')
-rw-r--r-- | handlers/rdiff.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/handlers/rdiff.in b/handlers/rdiff.in index aa02a55..62c5a28 100644 --- a/handlers/rdiff.in +++ b/handlers/rdiff.in @@ -137,7 +137,6 @@ if [ $ignore_version != "yes" ]; then fi # source specific checks -[ "$include" != "" -o "$vsinclude" != "" ] || fatal "No source includes specified" case $sourcetype in remote ) execstr_sourcepart="$sourceuser@$sourcehost::/" ;; local ) execstr_sourcepart="/" ;; @@ -233,7 +232,7 @@ fi set +o noglob # exclude everything else -execstr="${execstr}--exclude '/*' " +[ "$include" != "" -o "$vsinclude" != "" ] && execstr="${execstr}--exclude '/*' " # include client-part and server-part execstr="${execstr}$execstr_sourcepart $execstr_destpart" |