Database reinitialization protection 59/46559/1 2.0.0-ONAP beijing 2.0.0-ONAP v1.1.0
authoryangyan <yangyanyj@chinamobile.com>
Tue, 8 May 2018 09:23:02 +0000 (17:23 +0800)
committeryangyan <yangyanyj@chinamobile.com>
Tue, 8 May 2018 09:23:10 +0000 (17:23 +0800)
Issue-ID: VFC-900
Change-Id: Iaf4816573b5c63f410d6920833a3158b06ac52a2
Signed-off-by: yangyan <yangyanyj@chinamobile.com>
res/docker/instance_init.sh

index 1986369..11753d9 100755 (executable)
@@ -11,7 +11,10 @@ function start_mysql {
 
 function create_database {
     cd /service/vfc/gvnfm/vnfres/res/assembly/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
 }