added ping to the entrypoint too

This commit is contained in:
Hadis-Fard 2017-08-02 12:38:18 -07:00
parent 13a5bbb817
commit b7f7708817

View file

@ -1,8 +1,11 @@
set -e
isConnected="/opt/mssql-tools/bin/sqlcmd -S $1 -U $2 -P $3"
while ! ping -c3 $1 &>/dev/null; do echo "Ping Fail - `date`"; done ; echo "Host Found - `date`";
testConnection="/opt/mssql-tools/bin/sqlcmd -S $1 -U $2 -P $3"
until $isConnected; do
>&2 echo "SQL Server is starting up..."
until $testConnection; do
>&2 echo "SQL Server is starting up.."
sleep 1
done