diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-05-28 14:38:39 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-05-28 15:10:52 +0200 |
commit | 472d4b34027f37b05f10d5558d28d6c6bca74ff2 (patch) | |
tree | ec72e0b0278b3bde5b2099eb7e00373c4520fb71 /scripts/xds-server-stop.sh | |
parent | cd39a10faf25c07bd235824c5606bf7f08f63182 (diff) |
Add script to get xds-agent tarballs.
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'scripts/xds-server-stop.sh')
-rwxr-xr-x | scripts/xds-server-stop.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/scripts/xds-server-stop.sh b/scripts/xds-server-stop.sh new file mode 100755 index 0000000..8a6bf5e --- /dev/null +++ b/scripts/xds-server-stop.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +# Stop it gracefully +pkill -INT xds-server +sleep 1 + +# Seems no stopped, nasty kill +nbProc=$(ps -ef |grep xds-server |grep -v grep |wc -l) +if [ "$nbProc" != "0" ]; then + pkill -KILL xds-server +fi + +nbProc=$(ps -ef |grep syncthing |grep -v grep |wc -l) +if [ "$nbProc" != "0" ]; then + pkill -KILL syncthing + pkill -KILL syncthing-inotify +fi + |