diff options
author | Micah Anderson <micah@riseup.net> | 2006-10-31 05:00:13 +0000 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2006-10-31 05:00:13 +0000 |
commit | d595bf00cbd1c13eb157edf8d29d4b8fa76220e2 (patch) | |
tree | ca5e7d89e453c082d192dcaf2e5108d5ddbfafda | |
parent | b35260e595c78f9b29133a08e257ee03ed5c0d88 (diff) | |
download | backupninja-d595bf00cbd1c13eb157edf8d29d4b8fa76220e2.tar.gz backupninja-d595bf00cbd1c13eb157edf8d29d4b8fa76220e2.tar.bz2 |
forgot to commit minor fix to rub handler
-rw-r--r-- | handlers/rub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/handlers/rub b/handlers/rub index c68dee8..d2b4c44 100644 --- a/handlers/rub +++ b/handlers/rub @@ -204,7 +204,7 @@ if [ "$from" == "remote" ]; then rsync_remote_options="$rsync_remote_options --compress" fi - fi [ ! -z "$bandwidthlimit" ]; then + if [ ! -z "$bandwidthlimit" ]; then rsync_remote_options="$rsync_remote_options --bwlimit=$bandwidthlimit" fi |