From: fujinhua Date: Fri, 19 Apr 2019 08:24:23 +0000 (+0800) Subject: Fix sh grammar error for vnflcm X-Git-Tag: 1.3.0~35 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=vfc%2Fgvnfm%2Fvnflcm.git;a=commitdiff_plain;h=fcbdd6b1e4fc456dd1bf892efd2c00d7b98b1af4 Fix sh grammar error for vnflcm Change-Id: I39e44eb509009b78739cfa0e0541b36c63de733b Issue-ID: VFC-1307 Signed-off-by: fujinhua --- diff --git a/lcm/run.sh b/lcm/run.sh index c2d04b1c..d7014a23 100755 --- a/lcm/run.sh +++ b/lcm/run.sh @@ -20,7 +20,7 @@ fi # nohup python manage.py runserver 0.0.0.0:8801 > /dev/null & # nohup uwsgi --http :8801 -t 120 --module lcm.wsgi --master --processes 4 & -if [ ${SSL_ENABLED} = "true" ]; then +if [ "${SSL_ENABLED}" = "true" ]; then nohup uwsgi --https :8801,lcm/pub/ssl/cert/foobar.crt,lcm/pub/ssl/cert/foobar.key, -t 120 --module lcm.wsgi --master --processes 4 & else nohup uwsgi --http :8801 -t 120 --module lcm.wsgi --master --processes 4 &