fix docker run 31/61231/3
authorMichael Lando <ml636r@att.com>
Mon, 20 Aug 2018 08:34:04 +0000 (11:34 +0300)
committerTal Gitelman <tg851x@intl.att.com>
Mon, 20 Aug 2018 08:51:45 +0000 (08:51 +0000)
fix bug in the docker run simulator exaction

Change-Id: I78879d830ad0cbe4801cb478f7e3bd379bc80a79
Issue-ID: SDC-1665
Signed-off-by: Michael Lando <ml636r@att.com>
sdc-os-chef/scripts/docker_run.sh

index bb6d600..d02cc98 100755 (executable)
@@ -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 \