Last active
March 11, 2018 06:31
-
-
Save AndresPineros/4be2dc6877906ff5df4027914fd81d0a to your computer and use it in GitHub Desktop.
Wait for it for Centos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
HOST=$1 | |
PORT=$2 | |
TIMEOUT=$3 | |
INITIAL_WAIT=$4 | |
if [ -z "$TIMEOUT" ]; then TIMEOUT=15; fi | |
if [ ! -z "$INITIAL_WAIT" ]; then sleep $INITIAL_WAIT; fi | |
currentSeconds=0 | |
while true; do | |
RESPONSE=$(curl -sLf -m 2 -w "%{http_code}\n" "http://$HOST:$PORT/" -o /dev/null) | |
if [ "$RESPONSE" -ne "000" ]; then echo "Host $HOST returned $RESPONSE"; exit 0; fi | |
currentSeconds=$((currentSeconds + 1)) | |
if [ $currentSeconds -gt $TIMEOUT ]; then echo "Host $HOST timedout"; exit 0; fi | |
sleep 1; echo "Waiting on host: $HOST. Seconds: $currentSeconds" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment