summaryrefslogtreecommitdiffstats
path: root/sdc-os-chef/scripts/docker_run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'sdc-os-chef/scripts/docker_run.sh')
-rwxr-xr-xsdc-os-chef/scripts/docker_run.sh16
1 files changed, 2 insertions, 14 deletions
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 \