int comparison in shell is not done with >, but with -le (less or equal than)

parent 7cf5e714
......@@ -20,7 +20,7 @@ if [ $ONLY_SLAPFORMAT = false ]; then
ping -c 2 $IPV4CHECK
while [ $? != 0 ]; do
sleep $(($i * 5))
if [[ $i < 40 ]]; then
if [[ $i -le 40 ]]; then
let i++
fi
ping -c 2 $IPV4CHECK
......@@ -38,7 +38,7 @@ if [ $ONLY_SLAPFORMAT = false ]; then
while [ $? != 0 ];
do
sleep $(($i * 10))
if [[ $i < 40 ]]; then
if [[ $i -le 40 ]]; then
let i++
fi
ping6 -c 2 $IPV6CHECK
......@@ -53,7 +53,7 @@ echo -n "Running slapformat..."
/opt/slapos/bin/slapformat --now --console --verbose --log_file=/opt/slapos/slapformat.log $SLAPOS_CONFIGURATION/slapos.cfg
while [ $? != 0 ]; do
sleep $(($i*60))
if [ $i < 20 ]; then
if [ $i -le 20 ]; then
let i++
fi
echo "Retrying slapformat"
......@@ -67,7 +67,7 @@ if [ $ONLY_SLAPFORMAT = false ]; then
/opt/slapos/bin/bang -m "Rebooted" $SLAPOS_CONFIGURATION/slapos.cfg
while [ $? != 0 ]; do
sleep $(($i*60))
if [ $i < 20 ]; then
if [ $i -le 20 ]; then
let i++
fi
echo "Retrying Bang"
......@@ -77,4 +77,4 @@ if [ $ONLY_SLAPFORMAT = false ]; then
# Run slapgrid on all computer partitions
/opt/slapos/bin/slapgrid-cp --verbose --develop --now --logfile=/opt/slapos/slapgrid-cp.log --pidfile=/opt/slapos/slapgrid-cp.pid $SLAPOS_CONFIGURATION/slapos.cfg >> /opt/slapos/slapgrid-cp.log 2>&1
fi
\ No newline at end of file
fi
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment