diff options
author | hongyu zhao <zhao.hongyu@zte.com.cn> | 2020-03-10 02:11:31 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-03-10 02:11:31 +0000 |
commit | 8e16981cf3775de7e82c938939aeb59fadc406d1 (patch) | |
tree | fee7b2a871c05c39e8d01fea3fa0c7dc6efbc37a /zte | |
parent | 9ba4f81a62d430e1b99ab34b5a996a47289afb01 (diff) | |
parent | b331a328e8d5a80f85cc59e790baadbbdcdd6474 (diff) |
Merge "Fix svnfm-zte instance_config.sh error"
Diffstat (limited to 'zte')
-rwxr-xr-x | zte/vmanager/docker/instance_config.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zte/vmanager/docker/instance_config.sh b/zte/vmanager/docker/instance_config.sh index 7011f11f..3abc85c1 100755 --- a/zte/vmanager/docker/instance_config.sh +++ b/zte/vmanager/docker/instance_config.sh @@ -13,11 +13,11 @@ if [ $MSB_PROTO ]; then fi if [ $MSB_IP ]; then - sed -i "s|MSB_SERVICE_IP.*|MSB_SERVICE_IP = '$MSB_IP'|" vfc/nfvo/driver/vnfm/svnfm/zte/vmanager/driver/pub/config/config.py + sed -i "s|MSB_SERVICE_IP = .*|MSB_SERVICE_IP = '$MSB_IP'|" vfc/nfvo/driver/vnfm/svnfm/zte/vmanager/driver/pub/config/config.py fi if [ $MSB_PORT ]; then - sed -i "s|MSB_SERVICE_PORT.*|MSB_SERVICE_PORT = '$MSB_PORT'|" vfc/nfvo/driver/vnfm/svnfm/zte/vmanager/driver/pub/config/config.py + sed -i "s|MSB_SERVICE_PORT = .*|MSB_SERVICE_PORT = '$MSB_PORT'|" vfc/nfvo/driver/vnfm/svnfm/zte/vmanager/driver/pub/config/config.py fi if [ $SERVICE_IP ]; then |