2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-07-23 21:01:09 +00:00

Merge pull request #2255 from immarvin/onsyntax

Correct a syntax error.
This commit is contained in:
neo954
2016-12-05 02:55:34 -06:00
committed by GitHub
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