mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-10 04:42:31 +01:00
rub: Fixed integer comparison (Closes: Trac#3)
This commit is contained in:
parent
ffac2e56a5
commit
b6c7437f4b
@ -28,6 +28,7 @@ version 0.9.5 -- unreleased
|
||||
. Fixed typo in rub handler that caused it to not work
|
||||
. Changed to use lib/vserver code
|
||||
. Fixed fsck error
|
||||
. Fixed integer comparison (Closes: Trac#3)
|
||||
sys:
|
||||
. Fixed typo breaking things for VServers.
|
||||
. Fix bug when vrootdir is on its own partition (Closes: #395928)
|
||||
|
@ -100,7 +100,7 @@ getconf service
|
||||
|
||||
function rotate {
|
||||
|
||||
if [[ "$2" < 4 ]]; then
|
||||
if [[ "$2" -lt 4 ]]; then
|
||||
error "Rotate: minimum of 4 rotations"
|
||||
exit 1
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user