Skip to content

Instantly share code, notes, and snippets.

@eam
Created April 6, 2016 19:16
Show Gist options
  • Save eam/a9350c0373a9aa1580917cc1e5727ff3 to your computer and use it in GitHub Desktop.
Save eam/a9350c0373a9aa1580917cc1e5727ff3 to your computer and use it in GitHub Desktop.
[ -z "$RETRIES" ] && RETRIES=2
retry=0
while true; do
/usr/sbin/ntpdate $OPTIONS $tickers &> /dev/null
RETVAL=$?
[ $RETVAL -eq 0 ] || [ $retry -ge "$RETRIES" ] && break
sleep $[10 * (1 << $retry)]
retry=$[$retry + 1]
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment