diff options
author | 2018-08-07 15:55:18 +0800 | |
---|---|---|
committer | 2018-08-07 15:58:01 +0800 | |
commit | 064db2858005b9691a569dbf554006f48b3883fb (patch) | |
tree | f8c5aaeb8daaff51facebf8a3b9e00e13d18a265 /docker/instance_init.sh | |
parent | 2bf65961cb0084e53cc5efd57cdfa706a9743b8d (diff) |
Remove DB and redis service from nslcm
Change-Id: Iebc919306d93cfac848a03fee2aff23c0b287601
Issue-ID: VFC-977
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
Diffstat (limited to 'docker/instance_init.sh')
-rwxr-xr-x | docker/instance_init.sh | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/docker/instance_init.sh b/docker/instance_init.sh index daafcc26..cfc9b0d5 100755 --- a/docker/instance_init.sh +++ b/docker/instance_init.sh @@ -1,23 +1,2 @@ #!/bin/bash - -function start_redis_server { - redis-server & -} - -function start_mysql { - service mysql start - sleep 1 -} - -function create_database { - cd /service/vfc/nfvo/lcm/resources/bin - if [ ! -f dbexist.txt ]; then - echo 1 > dbexist.txt - bash initDB.sh root $MYSQL_ROOT_PASSWORD 3306 127.0.0.1 - fi - cd /service -} - -start_redis_server -start_mysql -create_database +echo "No service needs init." |