X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=lcm%2Fstop.sh;h=004fb0bc64eb6690877d0e4e6162efc7dabf2b22;hb=HEAD;hp=8ddb10818190f0659c27a193b1b8ae113c93328f;hpb=8e8a08c91d7136457beeafe04c1bde4c4ae26332;p=vfc%2Fgvnfm%2Fvnflcm.git diff --git a/lcm/stop.sh b/lcm/stop.sh index 8ddb1081..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 0.0.0.0: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