summaryrefslogtreecommitdiff
path: root/packages/scripts-cern/resources/bin/restart-gwt.sh
diff options
context:
space:
mode:
Diffstat (limited to 'packages/scripts-cern/resources/bin/restart-gwt.sh')
-rwxr-xr-xpackages/scripts-cern/resources/bin/restart-gwt.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/scripts-cern/resources/bin/restart-gwt.sh b/packages/scripts-cern/resources/bin/restart-gwt.sh
new file mode 100755
index 0000000..3870874
--- /dev/null
+++ b/packages/scripts-cern/resources/bin/restart-gwt.sh
@@ -0,0 +1,16 @@
+#!/bin/sh
+set -x
+pid=`jps | grep DevMode | cut -f 1 -d ' '`
+if [ -z "$pid" ]; then
+ echo "no running gwt-client found" >&2
+ exit 1
+fi
+
+cwd=`readlink "/proc/${pid}/cwd"`
+cmd=`cat "/proc/${pid}/cmdline" | tr '\0' ' '`
+cd "$cwd"
+kill -9 "$pid"
+
+sleep 1
+$cmd >/dev/null 2>&1 &
+disown -ar