diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-05-26 16:03:24 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-05-27 23:07:38 +0200 |
commit | 0805255ee01103c500f2aae8845850b3dae6a0b6 (patch) | |
tree | 737de20f823bbe6f6a416f9ad52ab6b0641ece26 /scripts/xds-stop-server.sh | |
parent | 49497b5b1e2a40ae9fac8bd43ecdfeed4d00e248 (diff) |
Add doc to create & start XDS AGL docker container.
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'scripts/xds-stop-server.sh')
-rw-r--r-- | scripts/xds-stop-server.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/scripts/xds-stop-server.sh b/scripts/xds-stop-server.sh new file mode 100644 index 0000000..8a6bf5e --- /dev/null +++ b/scripts/xds-stop-server.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 + |