From: Michael Lando Date: Mon, 20 Aug 2018 08:34:04 +0000 (+0300) Subject: fix docker run X-Git-Tag: 1.3.0~147 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=b751c9656c62ec4aa79e7af605dd24cfaeb4d8ad;p=sdc.git fix docker run fix bug in the docker run simulator exaction Change-Id: I78879d830ad0cbe4801cb478f7e3bd379bc80a79 Issue-ID: SDC-1665 Signed-off-by: Michael Lando --- diff --git a/sdc-os-chef/scripts/docker_run.sh b/sdc-os-chef/scripts/docker_run.sh index bb6d6005d3..d02cc98da8 100755 --- a/sdc-os-chef/scripts/docker_run.sh +++ b/sdc-os-chef/scripts/docker_run.sh @@ -184,18 +184,6 @@ function probe_dcae_tools { } # -# check simulator status -function probe_sim { - if lsof -Pi :8285 -sTCP:LISTEN -t >/dev/null ; then - echo "running" - sim_stat=true - else - echo "not running" - sim_stat=false - fi -} -# - function monitor_docker { DOCKER_NAME=$1 @@ -567,7 +555,7 @@ function sdc-ui-tests { # SDC-Simulator function sdc-sim { - if [ ${RUN_SIMULATOR} = true ]; then + if [ ${RUN_SIMULATOR} == true ]; then echo "docker run sdc-webSimulator..." if [ ${LOCAL} = false ]; then docker pull ${PREFIX}/sdc-simulator:${RELEASE} @@ -575,7 +563,7 @@ function sdc-sim { probe_sim sim_stat=$? - if [ sim_stat=1 ]; then + if [ ${sim_stat} == 1 ]; then docker run \ --detach \ --name sdc-sim \