summaryrefslogtreecommitdiffstats
path: root/fcaps/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'fcaps/run.sh')
-rw-r--r--fcaps/run.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/fcaps/run.sh b/fcaps/run.sh
index 51450029..088a04c2 100644
--- a/fcaps/run.sh
+++ b/fcaps/run.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
# Copyright (c) 2017-2019 Wind River Systems, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -21,7 +21,7 @@ export PYTHONPATH=lib/share
nohup celery -A fcaps worker --concurrency=1 --loglevel=info &
#nohup python manage.py runserver 0.0.0.0:9011 2>&1 &
-if [ ${SSL_ENABLED} = "true" ]; then
+if [ "${SSL_ENABLED}" == "true" ]; then
nohup uwsgi --https :9001,fcaps/pub/ssl/cert/cert.crt,fcaps/pub/ssl/cert/cert.key,HIGH --module fcaps.wsgi --master --enable-threads --processes 4 &
else
nohup uwsgi --http :9011 --module fcaps.wsgi --master --enable-threads --processes 4 &