Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions refreshTools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ if [[ "$LOCATION" != "NOTCONFIGURED" && "$LOCATION" != "" ]] ; then
# check if RMS is still updating - its taking longer and longer
loopctr=0
echo "Checking RMS update not in progress"
while [ $loopctr -lt 10 ] ; do
[ -f $RMSCFG ] && break
echo "RMS update in progress or station not configured, trying again in a minute"
sleep 60
loopctr=$((loopctr + 1))
done
while [ $loopctr -lt 10 ] ; do
grep XX0001 $RMSCFG | grep stationID:
[ $? -eq 1 ] && break
Expand Down
Loading