X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=lcm%2Fstop.sh;h=004fb0bc64eb6690877d0e4e6162efc7dabf2b22;hb=HEAD;hp=db87c64d24cfa2c9012d806d97a22bbf78500afa;hpb=e1a495b59a429486b3e5566bec86895cbbee9bbe;p=vfc%2Fgvnfm%2Fvnflcm.git diff --git a/lcm/stop.sh b/lcm/stop.sh index db87c64d..0d03d056 100755 --- a/lcm/stop.sh +++ b/lcm/stop.sh @@ -13,4 +13,11 @@ # See the License for the specific language governing permissions and # limitations under the License. -ps auxww | grep 'manage.py runserver 127.0.0.1:8801' | awk '{print $2}' | xargs kill -9 +# ps auxww | grep 'manage.py runserver 0.0.0.0:8801' | awk '{print $1}' | xargs kill -9 +# ps auxww |grep 'uwsgi --http' |awk '{print $1}' |xargs kill -9 + +if [ "${SSL_ENABLED}" = "true" ]; then + ps auxww |grep 'uwsgi --https :8801' |awk '{print $1}' |xargs kill -9 +else + ps auxww |grep 'uwsgi --http :8801' |awk '{print $1}' |xargs kill -9 +fi \ No newline at end of file