fix portal/dns gre issues
[demo.git] / boot / portal_vm_init.sh
index e7ecfe5..f6c0e75 100644 (file)
@@ -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