summaryrefslogtreecommitdiffstats
path: root/network/syncthing/rc.syncthing
diff options
context:
space:
mode:
Diffstat (limited to 'network/syncthing/rc.syncthing')
-rw-r--r--network/syncthing/rc.syncthing34
1 files changed, 29 insertions, 5 deletions
diff --git a/network/syncthing/rc.syncthing b/network/syncthing/rc.syncthing
index 9e13fac946..1ba6fd4f52 100644
--- a/network/syncthing/rc.syncthing
+++ b/network/syncthing/rc.syncthing
@@ -1,13 +1,37 @@
#!/bin/sh
+
+# Copyright 2016, Sebastian Arcus, UK
+# All rights reserved.
+#
+# Redistribution and use of this script, with or without modification, is
+# permitted provided that the following conditions are met:
#
-# syncthing start script
+# 1. Redistributions of this script must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
+# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
+# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+SYNCTHING_USER="syncthing"
+SYNCTHING="/usr/bin/syncthing"
+CONFDIR="/var/lib/syncthing/config"
+LOGFILE="/var/log/syncthing/syncthing.log"
+LOGFLAGS="11"
+ST_ARGS="-no-browser"
case "$1" in
stop)
- PID=/var/run/syncthing/syncthing.pid
- if [ -f $PID ]; then
+ if /usr/bin/pgrep -f /usr/bin/syncthing >/dev/null; then
echo "Stop Syncthing..."
- kill "`cat /var/run/syncthing/syncthing.pid`"
+ killall syncthing 2>/dev/null
else
echo "Syncthing is not running..."
exit 1
@@ -15,7 +39,7 @@ case "$1" in
;;
start)
echo "Start Syncthing..."
- /usr/bin/syncthing
+ su - $ST_USER -c "$SYNCTHING -home=$CONFDIR -logfile=$LOGFILE -logflags=$LOGFLAGS" $ST_ARGS 1>/dev/null 2>&1 &
;;
restart)
$0 stop