summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfujinhua <fu.jinhua@zte.com.cn>2019-05-07 09:04:01 +0800
committerfujinhua <fu.jinhua@zte.com.cn>2019-05-07 09:04:01 +0800
commit2bebb548521082e218ce6872858f7923022593cf (patch)
treea30738238c90f19e938a93cf282f0b7e0bad3015
parentdcefc5c1698dd52106d0b133cf22f5997af663b6 (diff)
Fix bug for vnfmgr stop sh
Change-Id: I586c36d837807567564c8818d8fc4b4030845d3b Issue-ID: VFC-1306 Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
-rwxr-xr-xmgr/stop.sh2
1 files changed, 1 insertions, 1 deletions
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