summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryangyan <yangyanyj@chinamobile.com>2020-01-22 17:33:54 +0800
committeryangyan <yangyanyj@chinamobile.com>2020-01-22 17:34:02 +0800
commit52ed97c6d08bd8a1a66abe1e5f91ded4a9d6dc03 (patch)
tree572c5b195d185b8a882835c4766837ded6a0b0b2
parent1927708c03f343d60fb39506faed3abf130e226e (diff)
Modify global variable substitution
Change-Id: I2dd0bb9d24b8aae8ef27417c3469017d7abf9393 Issue-ID: VFC-1595 Signed-off-by: yangyan <yangyanyj@chinamobile.com>
-rwxr-xr-xlcm/docker/instance_config.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/lcm/docker/instance_config.sh b/lcm/docker/instance_config.sh
index c7cc7504..9257c9ff 100755
--- a/lcm/docker/instance_config.sh
+++ b/lcm/docker/instance_config.sh
@@ -4,11 +4,11 @@ MSB_IP=`echo $MSB_ADDR | cut -d: -f 1`
MSB_PORT=`echo $MSB_ADDR | cut -d: -f 2`
if [ $MSB_IP ]; then
- sed -i "s|MSB_SERVICE_IP.*|MSB_SERVICE_IP = '$MSB_IP'|" vfc/gvnfm/vnflcm/lcm/lcm/pub/config/config.py
+ sed -i "s|MSB_SERVICE_IP = .*|MSB_SERVICE_IP = '$MSB_IP'|" vfc/gvnfm/vnflcm/lcm/lcm/pub/config/config.py
fi
if [ $MSB_PORT ]; then
- sed -i "s|MSB_SERVICE_PORT.*|MSB_SERVICE_PORT = '$MSB_PORT'|" vfc/gvnfm/vnflcm/lcm/lcm/pub/config/config.py
+ sed -i "s|MSB_SERVICE_PORT = .*|MSB_SERVICE_PORT = '$MSB_PORT'|" vfc/gvnfm/vnflcm/lcm/lcm/pub/config/config.py
fi
if [ $SERVICE_IP ]; then