blob: 3e34aa7d9d846bd3352193c7a889308d7eef9885 [file] [log] [blame]
Simon Hunt4d99c292015-06-04 18:09:35 -07001# script to stop the cord gui server
2#
Jonathan Hart4809de72015-06-05 09:37:12 -07003PID=$(ps -ef | grep jetty-runner | grep -v grep | awk '{print $2}')
Simon Hunt4d99c292015-06-04 18:09:35 -07004if [ -z "$PID" ]
5then
6 echo jetty-runner not running
7 exit 0
8fi
9kill $PID
10sleep 1
11
Jonathan Hart4809de72015-06-05 09:37:12 -070012PID=$(ps -ef | grep jetty-runner | grep -v grep | awk '{print $2}')
Simon Hunt4d99c292015-06-04 18:09:35 -070013if [ ! -z "$PID" ]
14then
15 echo jetty-runner still running ?
16else
17 echo jetty-runner stopped
18fi