diff options
Diffstat (limited to 'mgr/docker/instance_config.sh')
-rwxr-xr-x | mgr/docker/instance_config.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mgr/docker/instance_config.sh b/mgr/docker/instance_config.sh index 54c4528..e1ad7e1 100755 --- a/mgr/docker/instance_config.sh +++ b/mgr/docker/instance_config.sh @@ -9,7 +9,7 @@ if [ $REG_TO_MSB_WHEN_START ]; then fi if [ $MSB_IP ]; then - sed -i "s|MSB_SERVICE_IP.*|MSB_SERVICE_IP = '$MSB_IP'|" vfc/gvnfm/vnfmgr/mgr/mgr/pub/config/config.py + sed -i "s|MSB_SERVICE_IP = .*|MSB_SERVICE_IP = '$MSB_IP'|" vfc/gvnfm/vnfmgr/mgr/mgr/pub/config/config.py fi if [ $MSB_PROTO ]; then @@ -17,7 +17,7 @@ if [ $MSB_PROTO ]; then fi if [ $MSB_PORT ]; then - sed -i "s|MSB_SERVICE_PORT.*|MSB_SERVICE_PORT = '$MSB_PORT'|" vfc/gvnfm/vnfmgr/mgr/mgr/pub/config/config.py + sed -i "s|MSB_SERVICE_PORT = .*|MSB_SERVICE_PORT = '$MSB_PORT'|" vfc/gvnfm/vnfmgr/mgr/mgr/pub/config/config.py fi if [ $SERVICE_IP ]; then |