2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-08-22 11:10:24 +00:00

correct a syntax

This commit is contained in:
immarvin
2016-12-05 03:42:57 -05:00
parent 8ece1f1e6e
commit 483923eae7
2 changed files with 5 additions and 5 deletions

View File

@@ -66,7 +66,7 @@ if [ ! -z $SNAPSHOTSERVER ]; then
/bin/sh
exit
fi
RS= $(( $RANDOM % 20 ))
RS=$(( $RANDOM % 20 ))
echo "Trying again in $RS seconds..."
sleep $RS
done
@@ -83,7 +83,7 @@ if [ ! -z $SNAPSHOTSERVER ]; then
/bin/sh
exit
fi
RS= $(( $RANDOM % 20 ))
RS=$(( $RANDOM % 20 ))
echo "Trying again in $RS seconds..."
sleep $RS
done
@@ -98,7 +98,7 @@ if [ ! -z $SNAPSHOTSERVER ]; then
/bin/sh
exit
fi
RS= $(( $RANDOM % 20 ))
RS=$(( $RANDOM % 20 ))
echo "Trying again in $RS seconds..."
sleep $RS
done

View File

@@ -212,7 +212,7 @@ elif [ -r /rootimg-statelite.gz ]; then
/bin/sh
exit
fi
RS= $(( $RANDOM % 20 ))
RS=$(( $RANDOM % 20 ))
echo "Trying again in $RS seconds..."
sleep $RS
done
@@ -227,7 +227,7 @@ elif [ -r /rootimg-statelite.gz ]; then
/bin/sh
exit
fi
RS= $(( $RANDOM % 20 ))
RS=$(( $RANDOM % 20 ))
echo "Trying again in $RS seconds..."
sleep $RS
done