git-svn-id: http://code.autistici.org/svn/backupninja/trunk@508
758a04ac-41e6-0310-8a23-
8373a73cc35d
. Added an examples file (Closes: Trac#23)
. Applied patch from Anarcat that fixes the cp/mkdir calls to not use GNU
coreutils options, as well as some bashisms (Closes: Trac#24)
+ . Fix test mode (Closes: Trac#25)
mysql:
. Fixed case where odd combination of configuration options caused sqldump
backups to get overwritten with an empty file (Closes: #402679)
[ "$multiconnection" == "notset" ] && fatal "The maildir handler uses a very different destination format. See the example .maildir for more information"
-[ ! $test ] || testflags="--dry-run -v"
+if [ $test ]; then
+ testflags="--dry-run -v"
+fi
+
rsyncflags="$testflags -e 'ssh -p $destport' -r -v --ignore-existing --delete --size-only --bwlimit=$speedlimit"
excludes="--exclude '.Trash/\*' --exclude '.Mistakes/\*' --exclude '.Spam/\*'"