diff options
author | 2017-09-21 07:15:08 +0000 | |
---|---|---|
committer | 2017-09-21 07:15:08 +0000 | |
commit | 73335f2c7e12d226b8b181bdb420dab5717cad5d (patch) | |
tree | ee27e95e69b6522d78958bcc635deba16841c48a /vio/docker/instance-config.sh | |
parent | 88f24efabca0667fe9fae2b7537044345dac2f79 (diff) | |
parent | 0d081b4743d113be79edf5a1c0ce1078477619e3 (diff) |
Merge "Fix multicloud vio bugs"
Diffstat (limited to 'vio/docker/instance-config.sh')
-rwxr-xr-x | vio/docker/instance-config.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vio/docker/instance-config.sh b/vio/docker/instance-config.sh index 221cac9..cb05a9a 100755 --- a/vio/docker/instance-config.sh +++ b/vio/docker/instance-config.sh @@ -2,7 +2,7 @@ # Configure MSB IP address MSB_IP=`echo $MSB_ADDR | cut -d: -f 1` -MSB_PORT=`echo $MSB_ADDR | cut -d: -f 2` +MSB_PORT=`echo $MSB_PORT | cut -d: -f 2` sed -i "s|MSB_SERVICE_IP.*|MSB_SERVICE_IP = '$MSB_IP'|" vio/vio/pub/config/config.py sed -i "s|MSB_SERVICE_PORT.*|MSB_SERVICE_PORT = '$MSB_PORT'|" vio/vio/pub/config/config.py sed -i "s|DB_NAME.*|DB_NAME = 'inventory'|" vio/vio/pub/config/config.py |