aboutsummaryrefslogtreecommitdiffstats
path: root/stop.sh
diff options
context:
space:
mode:
authordengyh <dengyuanhong@chinamobile.com>2020-06-18 09:50:39 +0800
committerdengyh <dengyuanhong@chinamobile.com>2020-06-18 09:50:44 +0800
commit1f9fde9ca711a6ce22bb4424b8f2667a553a4aa0 (patch)
treee540c0acc9d92f1b20dd094dd488ff0a0822fd9a /stop.sh
parent6ffe1ecc8f0d52d7546ff640d275748ba21ff00c (diff)
Upgrage etsicatalog to ensure interface support https protocol
Change-Id: Ida7318fa727096721d0b2f3e9a06dfb96c20c37d Issue-ID: MODELING-372 Signed-off-by: dengyh <dengyuanhong@chinamobile.com>
Diffstat (limited to 'stop.sh')
-rwxr-xr-xstop.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/stop.sh b/stop.sh
index f939ce5..f118622 100755
--- a/stop.sh
+++ b/stop.sh
@@ -14,4 +14,10 @@
# limitations under the License.
# ps auxww | grep "manage.py runserver 0.0.0.0:8806" | awk '{print $1}' | xargs kill -9
-ps auxww |grep 'uwsgi --http' |awk '{print $1}' |xargs kill -9
+# ps auxww |grep 'uwsgi --http' |awk '{print $1}' |xargs kill -9
+
+if [ "${SSL_ENABLED}" = "true" ]; then
+ ps auxww |grep 'uwsgi --https :8806' |awk '{print $1}' |xargs kill -9
+else
+ ps auxww |grep 'uwsgi --http :8806' |awk '{print $1}' |xargs kill -9
+fi