aboutsummaryrefslogtreecommitdiffstats
path: root/plans/vfc-nfvo-wfengine/sanity-check
diff options
context:
space:
mode:
authorMarco Platania <platania@research.att.com>2020-03-23 12:40:12 +0000
committerGerrit Code Review <gerrit@onap.org>2020-03-23 12:40:12 +0000
commit7405933ba6de25b33ca577e714f298b9fe82beee (patch)
treed127f73962b136739d6794227694ab1aa18ae6c0 /plans/vfc-nfvo-wfengine/sanity-check
parent6084ae6d95002956774b813202d3fc70ffddfabf (diff)
parent5f7b64b22b44e0866842b778760cf5ccfc23201b (diff)
Merge "Fix getting local ip address in CSIT setup scripts"
Diffstat (limited to 'plans/vfc-nfvo-wfengine/sanity-check')
-rw-r--r--plans/vfc-nfvo-wfengine/sanity-check/setup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/plans/vfc-nfvo-wfengine/sanity-check/setup.sh b/plans/vfc-nfvo-wfengine/sanity-check/setup.sh
index e7c755fa..387ccf87 100644
--- a/plans/vfc-nfvo-wfengine/sanity-check/setup.sh
+++ b/plans/vfc-nfvo-wfengine/sanity-check/setup.sh
@@ -49,7 +49,7 @@ IMAGE="wfengine-activiti"
IMAGE_ACTIVITI_NAME="${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/${IMAGE}"
#get current host IP addres
-SERVICE_IP=$(ip route get 8.8.8.8 | awk '/8.8.8.8/ {print $NF}')
+SERVICE_IP=$(ip route get 8.8.8.8 | awk '/8.8.8.8/ {print $7}')
# start wfengine-activiti
# docker run -d --name vfc_wfengine_activiti -p 8804:8080 -e SERVICE_IP=$SERVICE_IP -e SERVICE_PORT=8804 -e OPENPALETTE_MSB_IP=${MSB_IAG_IP} -e OPENPALETTE_MSB_PORT=80 ${IMAGE_ACTIVITI_NAME}