diff options
author | intrigeri <intrigeri@boum.org> | 2012-02-25 14:01:49 +0100 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2012-02-25 14:01:49 +0100 |
commit | a74db16e51a057d665f7d8ee35733ffce12a4717 (patch) | |
tree | dca24b2774b0bb5fe4c241f79f8e64d7250f7b11 /handlers/wget | |
parent | 7c4d7e4dbed3c3417a78c59a7c0cb0d0c3108da3 (diff) | |
download | backupninja-a74db16e51a057d665f7d8ee35733ffce12a4717.tar.gz backupninja-a74db16e51a057d665f7d8ee35733ffce12a4717.tar.bz2 |
Fix typos.
Diffstat (limited to 'handlers/wget')
-rw-r--r-- | handlers/wget | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/handlers/wget b/handlers/wget index 67425fc..79aa22c 100644 --- a/handlers/wget +++ b/handlers/wget @@ -26,7 +26,7 @@ # wget = wget program # wget_options = wget command options # url = remote data url -# bandwidthlimit = set a badnwidth limit in kbps (remote source only) +# bandwidthlimit = set a bandwidth limit in kbps (remote source only) # # [destination] # folder = local folder @@ -182,8 +182,8 @@ echo "Rotating $backupdir/$folder/$folder..." >> $log rotate $backupdir/$folder/$folder $keep info "Wget'ing $SECTION on $backupdir/$folder/$folder.0..." -if [ ! -z "$badnwidth" ]; then - limit_rate="--limit-rate=$badnwidth""k" +if [ ! -z "$bandwidth" ]; then + limit_rate="--limit-rate=$bandwidth""k" fi cd $backupdir/$folder/$folder.0 |