diff options
author | intrigeri <intrigeri@boum.org> | 2009-07-18 10:45:45 +0200 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2009-07-18 10:47:55 +0200 |
commit | f45803230a839de092122f6843422097deff4eaa (patch) | |
tree | f41c3338f8b259d7fc196a03ee63d968527d2abe | |
parent | 8000beda168ec59df4f8cc69e72cb6e9722368eb (diff) | |
download | backupninja-f45803230a839de092122f6843422097deff4eaa.tar.gz backupninja-f45803230a839de092122f6843422097deff4eaa.tar.bz2 |
dup: fixed bandwidthlimit test
Thanks to Ian Beckwith <ianb@erislabs.net> for the patch.
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | handlers/dup.in | 2 |
3 files changed, 5 insertions, 1 deletions
@@ -29,3 +29,4 @@ Adam Monsen - spec file updates Matthew Palmer <mpalmer@debian.org> -- halt loglevel feature dan@garthwaite.org -- reportspace bugfix Tuomas Jormola <tj@solitudo.net> -- "when = manual" option +Ian Beckwith <ianb@erislabs.net> -- dup bandwidthlimit fix @@ -26,6 +26,9 @@ version 0.9.7 -- UNRELEASED . New lvm option (default=disabled) to backup LVM metadata for every detected volume group. . Backup dmsetup info as well, for easier restoring of Luks headers. + dup: + . Fixed bandwidthlimit syntax error. Thanks to Ian Beckwith for + the patch. version 0.9.6 -- July 21, 2008 backupninja changes diff --git a/handlers/dup.in b/handlers/dup.in index aed6030..54b7709 100644 --- a/handlers/dup.in +++ b/handlers/dup.in @@ -106,7 +106,7 @@ duplicity_sub="`echo $duplicity_version | @AWK@ -F '.' '{print $3}'`" # --sftp-command ourselves scpoptions="$sshoptions" -if [ "$bandwidthlimit" =! 0 ]; then +if [ "$bandwidthlimit" != 0 ]; then [ -z "$testurl" ] || warning 'The bandwidthlimit option is not used when desturl is set.' scpoptions="$scpoptions -l $bandwidthlimit" fi |