diff options
author | fujinhua <fu.jinhua@zte.com.cn> | 2019-05-07 09:05:03 +0800 |
---|---|---|
committer | fujinhua <fu.jinhua@zte.com.cn> | 2019-05-07 09:05:03 +0800 |
commit | b3c27277e2653ec2014e111f3115a7cb39d1e5c0 (patch) | |
tree | 50da15d2bb3137723797efcc81283c07df7df9c1 | |
parent | 669ef8d8b4f9b9170d0710bc92ac621fe27fcb81 (diff) |
Fix bug for nslcm stop sh
Change-Id: Ia310d11ed6148fde47ab9d49cbc4835d9640279b
Issue-ID: VFC-1306
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
-rwxr-xr-x | stop.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,4 +13,4 @@ # See the License for the specific language governing permissions and # limitations under the License. # ps auxww | grep "manage.py runserver 0.0.0.0:8403" | awk '{print $2}' | xargs kill -9 -ps auxww |grep 'uwsgi --http :8403 --module lcm.wsgi --master' |awk '{print $2}' |xargs kill -9 +ps auxww |grep 'uwsgi --http' |awk '{print $1}' |xargs kill -9 |