From: Micah Anderson Date: Wed, 2 Dec 2009 22:09:16 +0000 (-0500) Subject: adjust the comparison operators in the rsync handler, fixes #1473 X-Git-Tag: backupninja-0.9.7~28 X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fbackupninja.git;a=commitdiff_plain;h=34d0d30593e09a6d0af06e2f201b879cc391c6af;hp=f9672647177f771270f40a858fb94283ff1ebcdf adjust the comparison operators in the rsync handler, fixes #1473 --- diff --git a/handlers/rsync.in b/handlers/rsync.in index 829f148..9e04efe 100644 --- a/handlers/rsync.in +++ b/handlers/rsync.in @@ -306,7 +306,7 @@ function rotate_short { local keep="$2" local metadata="`dirname $folder`/metadata" - if [[ "$keep" < 4 ]]; then + if [[ "$keep" -lt 4 ]]; then error "Rotate: minimum of 4 rotations" exit 1 fi @@ -341,7 +341,7 @@ function rotate_short_remote { local metadata="`dirname $folder`/metadata" local keep="$2" - if [[ "$2" < 4 ]]; then + if [[ "$2" -lt 4 ]]; then error "Rotate: minimum of 4 rotations" exit 1 fi