diff options
author | fujinhua <fu.jinhua@zte.com.cn> | 2019-05-07 08:55:39 +0800 |
---|---|---|
committer | fujinhua <fu.jinhua@zte.com.cn> | 2019-05-07 09:02:04 +0800 |
commit | f643d0b9eb41c020bce51c61c6e4e4ae5d40a552 (patch) | |
tree | 0b02a9cacc3a1313fa6608713899b89d7cfc2456 /lcm | |
parent | 19d668976f82fba24a39d064d29f9f9034638bd3 (diff) |
Fix bug for vnflcm stop sh
Change-Id: I0a3e01122fa2da0e6541b114daeeeb20965da3bb
Issue-ID: VFC-1306
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
Diffstat (limited to 'lcm')
-rwxr-xr-x | lcm/stop.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lcm/stop.sh b/lcm/stop.sh index 341f648f..099f555f 100755 --- a/lcm/stop.sh +++ b/lcm/stop.sh @@ -14,4 +14,4 @@ # limitations under the License. # ps auxww | grep 'manage.py runserver 0.0.0.0:8801' | awk '{print $2}' | xargs kill -9 -ps auxww |grep 'uwsgi --http :8801 --module lcm.wsgi --master' |awk '{print $2}' |xargs kill -9
\ No newline at end of file +ps auxww |grep 'uwsgi --http' |awk '{print $1}' |xargs kill -9
\ No newline at end of file |