diff options
Diffstat (limited to 'boot')
-rw-r--r-- | boot/portal_vm_init.sh | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/boot/portal_vm_init.sh b/boot/portal_vm_init.sh index e7ecfe54..f6c0e75c 100644 --- a/boot/portal_vm_init.sh +++ b/boot/portal_vm_init.sh @@ -35,12 +35,17 @@ sleep 180 if [ ! -e /opt/config/boot.txt ] then - if [ -e /opt/config/public_ip.txt ] - then - IP_ADDRESS=$(cat /opt/config/public_ip.txt) - else - IP_ADDRESS=$(ifconfig eth0 | grep "inet addr" | tr -s ' ' | cut -d' ' -f3 | cut -d':' -f2) - fi - mysql -u root -p'Aa123456' -h $IP_ADDRESS < /opt/portal/deliveries/Apps_Users_OnBoarding_Script.sql - echo "yes" > /opt/config/boot.txt + if [ -e /opt/config/public_ip.txt ] + then + IP_ADDRESS=$(cat /opt/config/public_ip.txt) + else + IP_ADDRESS=$(ifconfig eth0 | grep "inet addr" | tr -s ' ' | cut -d' ' -f3 | cut -d':' -f2) + fi + # Wait until MySQL is running... + while [[ $(netstat -vulntp |grep -i mysql | awk '{print $4}') != ":::3306" ]] + do + sleep 1 + done + mysql -u root -p'Aa123456' -h $IP_ADDRESS < /opt/portal/deliveries/Apps_Users_OnBoarding_Script.sql + echo "yes" > /opt/config/boot.txt fi |