From 2bebb548521082e218ce6872858f7923022593cf Mon Sep 17 00:00:00 2001 From: fujinhua Date: Tue, 7 May 2019 09:04:01 +0800 Subject: [PATCH] Fix bug for vnfmgr stop sh Change-Id: I586c36d837807567564c8818d8fc4b4030845d3b Issue-ID: VFC-1306 Signed-off-by: fujinhua --- mgr/stop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mgr/stop.sh b/mgr/stop.sh index 1c41bf7..38ca0d6 100755 --- a/mgr/stop.sh +++ b/mgr/stop.sh @@ -14,4 +14,4 @@ # limitations under the License. # ps auxww | grep 'manage.py runserver 0.0.0.0:8803' | awk '{print $2}' | xargs kill -9 -ps auxww |grep 'uwsgi --http :8803 --module mgr.wsgi --master' |awk '{print $2}' |xargs kill -9 +ps auxww |grep 'uwsgi --http' |awk '{print $1}' |xargs kill -9 -- 2.16.6