Bash - check to make sure website is available before continuing, otherwise sleep and try again Bash - check to make sure website is available before continuing, otherwise sleep and try again curl curl

Bash - check to make sure website is available before continuing, otherwise sleep and try again


try with

until curl --head --silent --fail http://tick.home:8086/ping 1> /dev/null 2>&1; do    sleep 1done