summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfujinhua <fu.jinhua@zte.com.cn>2019-05-07 09:03:05 +0800
committerfujinhua <fu.jinhua@zte.com.cn>2019-05-07 09:03:05 +0800
commita4fc79bbc5a8edec3ba8e43ef28e6d59eac74692 (patch)
treef169da16a5a1cb0da44d58858f05935341799504
parentbc944dd1f86e2d8128d81bea7cd71f76876b91cb (diff)
Fix bug for vnfres stop sh
Change-Id: Ic7a53183965beadd925e9fc7a90d8752a10e82ce Issue-ID: VFC-1306 Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
-rwxr-xr-xres/stop.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/stop.sh b/res/stop.sh
index 3c2d671..2be7a39 100755
--- a/res/stop.sh
+++ b/res/stop.sh
@@ -14,4 +14,4 @@
# limitations under the License.
#ps auxww | grep 'manage.py runserver 0.0.0.0:8802' | awk '{print $2}' | xargs kill -9
-ps auxww |grep 'uwsgi --http :8802 --module res.wsgi --master' |awk '{print $2}' |xargs kill -9
+ps auxww |grep 'uwsgi --http' |awk '{print $1}' |xargs kill -9