summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryangyan <yangyanyj@chinamobile.com>2018-05-08 17:26:16 +0800
committeryangyan <yangyanyj@chinamobile.com>2018-05-08 17:26:25 +0800
commit1c8e023d59c296f10dd5aad2bcc526bb9aa8fd1a (patch)
tree13957723f1c34892a463051452b0fa8f60a64c9a
parentfe30da57b821616e9e92f27b8dd96d8056a91f30 (diff)
Database reinitialization protectionv1.1.02.0.0-ONAPbeijing2.0.0-ONAP
Issue-ID: VFC-900 Change-Id: If3b2584aad4dffce695c856749901136b5d57cb6 Signed-off-by: yangyan <yangyanyj@chinamobile.com>
-rwxr-xr-xmgr/docker/instance_init.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/mgr/docker/instance_init.sh b/mgr/docker/instance_init.sh
index 90468f8..2764a07 100755
--- a/mgr/docker/instance_init.sh
+++ b/mgr/docker/instance_init.sh
@@ -11,7 +11,10 @@ function start_mysql {
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
}