diff options
author | Johan Lundberg <lundberg@nordu.net> | 2015-04-20 14:17:06 +0200 |
---|---|---|
committer | Johan Lundberg <lundberg@nordu.net> | 2015-04-20 14:17:06 +0200 |
commit | 6e424635df6521d5a1b9c1aa8379fb4c0215c1ca (patch) | |
tree | bdc5d9ba183870dd21c3d5ecff67b8c4694b9041 /global | |
parent | cd87a440cfef2e18993c25c5aa3b6064ba6c33cb (diff) |
Upped max tries to 60 and corrected off by one error :)sunet-ops-2015-04-20-v01
Diffstat (limited to 'global')
-rwxr-xr-x | global/overlay/usr/local/bin/ping-check | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/global/overlay/usr/local/bin/ping-check b/global/overlay/usr/local/bin/ping-check index 26c99ed..57d533c 100755 --- a/global/overlay/usr/local/bin/ping-check +++ b/global/overlay/usr/local/bin/ping-check @@ -3,10 +3,10 @@ # Ping until reply or MAX_TRIES. One try == 1s. # -MAX_TRIES=10 +MAX_TRIES=60 LOGTAG="sunet_docker_ping_check" -count=0 +count=1 until ping -c1 $1 &> /dev/null do if [ $count -gt $MAX_TRIES ] @@ -17,3 +17,5 @@ do sleep 1 count=$[$count+1] done +logger -t "$LOGTAG" "IP lookup of $1 succeeded after $count tries." + |