aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/apps/demo/cord-gui/src/scripts/stop.me
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/onos/apps/demo/cord-gui/src/scripts/stop.me')
-rw-r--r--framework/src/onos/apps/demo/cord-gui/src/scripts/stop.me18
1 files changed, 18 insertions, 0 deletions
diff --git a/framework/src/onos/apps/demo/cord-gui/src/scripts/stop.me b/framework/src/onos/apps/demo/cord-gui/src/scripts/stop.me
new file mode 100644
index 00000000..3e34aa7d
--- /dev/null
+++ b/framework/src/onos/apps/demo/cord-gui/src/scripts/stop.me
@@ -0,0 +1,18 @@
+# script to stop the cord gui server
+#
+PID=$(ps -ef | grep jetty-runner | grep -v grep | awk '{print $2}')
+if [ -z "$PID" ]
+then
+ echo jetty-runner not running
+ exit 0
+fi
+kill $PID
+sleep 1
+
+PID=$(ps -ef | grep jetty-runner | grep -v grep | awk '{print $2}')
+if [ ! -z "$PID" ]
+then
+ echo jetty-runner still running ?
+else
+ echo jetty-runner stopped
+fi