diff options
author | yangyan <yangyanyj@chinamobile.com> | 2018-05-08 17:17:37 +0800 |
---|---|---|
committer | yangyan <yangyanyj@chinamobile.com> | 2018-05-08 17:17:42 +0800 |
commit | 1b529f0867c5a1a019d123842a672342dcff9d2d (patch) | |
tree | 1682c7c3c9478ac45c124a7ee2f86fb96ce781ad /lcm | |
parent | 38dc7ecdb409b719dd9796a3042886e472a50192 (diff) |
Database reinitialization protectionv1.1.02.0.0-ONAPbeijing2.0.0-ONAP
Issue-ID: VFC-900
Change-Id: I84c8f152325b0f1fd65b92772309cb9a6f97b771
Signed-off-by: yangyan <yangyanyj@chinamobile.com>
Diffstat (limited to 'lcm')
-rwxr-xr-x | lcm/docker/instance_init.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lcm/docker/instance_init.sh b/lcm/docker/instance_init.sh index 90468f83..2764a07a 100755 --- a/lcm/docker/instance_init.sh +++ b/lcm/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 } |