From 6e424635df6521d5a1b9c1aa8379fb4c0215c1ca Mon Sep 17 00:00:00 2001 From: Johan Lundberg Date: Mon, 20 Apr 2015 14:17:06 +0200 Subject: Upped max tries to 60 and corrected off by one error :) --- global/overlay/usr/local/bin/ping-check | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'global') 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." + -- cgit v1.1