Database reinitialization protection
[vfc/gvnfm/vnflcm.git] / lcm / docker / instance_init.sh
index 599584d..2764a07 100755 (executable)
@@ -5,13 +5,16 @@ function start_redis_server {
 }
 
 function start_mysql {
-    find /var/lib/mysql -type f -exec touch {} \; && service mysql start
+    service mysql start
     sleep 1
 }
 
 function create_database {
     cd /service/bin
-    bash initDB.sh root $MYSQL_ROOT_PASSWORD 3306 127.0.0.1
+    if [ ! -f dbexist.txt ]; then
+        echo 1 > dbexist.txt
+        bash initDB.sh root $MYSQL_ROOT_PASSWORD 3306 127.0.0.1
+    fi
     cd /service
 }