summaryrefslogtreecommitdiffstats
path: root/vio/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'vio/run.sh')
-rwxr-xr-xvio/run.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/vio/run.sh b/vio/run.sh
index 0a19cd5..1f08d71 100755
--- a/vio/run.sh
+++ b/vio/run.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
# Copyright (c) 2017-2018 VMware, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -32,7 +32,7 @@ then
python multivimbroker/scripts/api.py
else
# nohup python manage.py runserver 0.0.0.0:9004 2>&1 &
- if [ ${SSL_ENABLED} = "true" ]; then
+ if [ "${SSL_ENABLED}" == "true" ]; then
nohup uwsgi --https :9004,/opt/vio/cert.crt,/opt/vio/cert.key --module vio.wsgi --master --processes 4 &
else