diff options
author | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-09-11 15:33:42 +0800 |
---|---|---|
committer | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-09-11 15:33:42 +0800 |
commit | 174fd48ee00a5a67b690da1301993d6535afb811 (patch) | |
tree | 75ac6c4b56f0671aff5e7185c1b834da5a7e9df7 /res | |
parent | da60cf087c2089784060467537aa3f02d0098d77 (diff) |
Fix bugs in docker build scripts
Change-Id: Ic2818ff36834e825edbd2374b06f7e5165004112
Issue-ID: VFC-324
Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
Diffstat (limited to 'res')
-rwxr-xr-x | res/docker/instance_config.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/res/docker/instance_config.sh b/res/docker/instance_config.sh index 0d12bf8..5affa90 100755 --- a/res/docker/instance_config.sh +++ b/res/docker/instance_config.sh @@ -13,8 +13,8 @@ fi if [ $SERVICE_IP ]; then sed -i "s|\"ip\": \".*\"|\"ip\": \"$SERVICE_IP\"|" vfc/gvnfm/vnfres/res/res/pub/config/config.py - sed -i "s|127\.0\.0\.1|$SERVICE_IP|" vfc/nfvo/lcm/run.sh - sed -i "s|127\.0\.0\.1|$SERVICE_IP|" vfc/nfvo/lcm/stop.sh + sed -i "s|127\.0\.0\.1|$SERVICE_IP|" vfc/gvnfm/vnfres/res/run.sh + sed -i "s|127\.0\.0\.1|$SERVICE_IP|" vfc/gvnfm/vnfres/res/stop.sh fi if [ $REDIS_HOST ]; then |