diff options
author | fujinhua <fu.jinhua@zte.com.cn> | 2017-08-31 14:43:08 +0800 |
---|---|---|
committer | fujinhua <fu.jinhua@zte.com.cn> | 2017-08-31 14:52:58 +0800 |
commit | 452c2b042e394d6634d8e457c338607d4f92a09c (patch) | |
tree | 09b098e741d1d23aeaf5be81851a5710b0b9ad32 /lcm/docker/instance_init.sh | |
parent | 413288222272a379b87ff89aee95f2333e025da1 (diff) |
Add Dockerfile of vfc-gvnfm-vnflcm
Change-Id: I2018e93166be6d4c7eaca8d3f8a837d9bef9c0d0
Issue-Id: VFC-198
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
Diffstat (limited to 'lcm/docker/instance_init.sh')
-rwxr-xr-x | lcm/docker/instance_init.sh | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/lcm/docker/instance_init.sh b/lcm/docker/instance_init.sh new file mode 100755 index 00000000..ecf9e86e --- /dev/null +++ b/lcm/docker/instance_init.sh @@ -0,0 +1,39 @@ +#!/bin/bash +function install_python_libs { + cd /service/vfc/gvnfm/vnflcm/lcm + pip install -r requirements.txt +} + +function start_redis_server { + redis-server & +} + +function start_mysql { + service mysql start +} + +function create_database { + cd /service/bin + bash initDB.sh root $MYSQL_ROOT_PASSWORD 3306 127.0.0.1 +} + +function edit_configs { + cd /service/vfc/gvnfm/vnflcm/lcm/docker + bash instance_config.sh +} + +function start_server { + cd /service/vfc/gvnfm/vnflcm/lcm + bash run.sh +} + +if [ $MYSQL_ROOT_PASSWORD ]; then + install_python_libs + start_redis_server + start_mysql + create_database + edit_configs + start_server +else + echo "MYSQL_ROOT_PASSWORD environment variable not set." +fi |