Skip to content
Snippets Groups Projects
Commit b6c7437f authored by intrigeri's avatar intrigeri
Browse files

rub: Fixed integer comparison (Closes: Trac#3)

parent ffac2e56
Branches
Tags
No related merge requests found
...@@ -28,6 +28,7 @@ version 0.9.5 -- unreleased ...@@ -28,6 +28,7 @@ version 0.9.5 -- unreleased
. Fixed typo in rub handler that caused it to not work . Fixed typo in rub handler that caused it to not work
. Changed to use lib/vserver code . Changed to use lib/vserver code
. Fixed fsck error . Fixed fsck error
. Fixed integer comparison (Closes: Trac#3)
sys: sys:
. Fixed typo breaking things for VServers. . Fixed typo breaking things for VServers.
. Fix bug when vrootdir is on its own partition (Closes: #395928) . Fix bug when vrootdir is on its own partition (Closes: #395928)
......
...@@ -100,7 +100,7 @@ getconf service ...@@ -100,7 +100,7 @@ getconf service
function rotate { function rotate {
if [[ "$2" < 4 ]]; then if [[ "$2" -lt 4 ]]; then
error "Rotate: minimum of 4 rotations" error "Rotate: minimum of 4 rotations"
exit 1 exit 1
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment