From 924d3cb5a15eb60e729f477f18a597040d17e9b8 Mon Sep 17 00:00:00 2001 From: Johan Lundberg Date: Wed, 15 Apr 2015 15:20:04 +0200 Subject: Added script ping-check and new pre_start statements for flog_app and flog_nginx --- global/overlay/usr/local/bin/ping-check | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 global/overlay/usr/local/bin/ping-check (limited to 'global/overlay/usr/local') diff --git a/global/overlay/usr/local/bin/ping-check b/global/overlay/usr/local/bin/ping-check new file mode 100755 index 0000000..26c99ed --- /dev/null +++ b/global/overlay/usr/local/bin/ping-check @@ -0,0 +1,19 @@ +#!/usr/bin/env bash +# +# Ping until reply or MAX_TRIES. One try == 1s. +# + +MAX_TRIES=10 +LOGTAG="sunet_docker_ping_check" + +count=0 +until ping -c1 $1 &> /dev/null +do + if [ $count -gt $MAX_TRIES ] + then + logger -t "$LOGTAG" "No response from $1 after $MAX_TRIES tries." + exit 1 + fi + sleep 1 + count=$[$count+1] +done -- cgit v1.1 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/overlay/usr/local') 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