diff options
author | Sebastian Arcus <s.arcus@open-t.co.uk> | 2016-05-20 01:26:42 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-05-20 20:03:53 +0700 |
commit | 28eb8e07b152e0266b4055618c96fab3225ac1ca (patch) | |
tree | a1e7a7711d1245c6a8c6ad27f3c0f04fec5db224 /network/syncthing/rc.syncthing | |
parent | 2d2e5c3ded84aa821a8306c7fcc003de0e46b338 (diff) | |
download | slackbuilds-28eb8e07b152e0266b4055618c96fab3225ac1ca.tar.gz |
network/syncthing: Updated for version 0.13.0 + new maintainer.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/syncthing/rc.syncthing')
-rw-r--r-- | network/syncthing/rc.syncthing | 34 |
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 |