diff options
author | Johan Lundberg <lundberg@nordu.net> | 2015-04-15 15:20:04 +0200 |
---|---|---|
committer | Johan Lundberg <lundberg@nordu.net> | 2015-04-15 15:20:04 +0200 |
commit | 924d3cb5a15eb60e729f477f18a597040d17e9b8 (patch) | |
tree | adf999dd84fe5833d1d261763d52555ffea5d3b4 /global/overlay/usr/local | |
parent | 5b4a547ac671c0eb2a8b8c3c002352c5ac3be624 (diff) |
Added script ping-check and new pre_start statements for flog_app and flog_nginxsunet-ops-2015-04-15-v01
Diffstat (limited to 'global/overlay/usr/local')
-rwxr-xr-x | global/overlay/usr/local/bin/ping-check | 19 |
1 files changed, 19 insertions, 0 deletions
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 |