Created
July 29, 2017 06:06
-
-
Save jcouyang/a66ae0145aa3d9ae7d554bf3ad2515c9 to your computer and use it in GitHub Desktop.
/etc/init.d/syncthing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: syncthing | |
# Required-Start: $local_fs $remote_fs | |
# Required-Stop: $local_fs $remote_fs | |
# Should-Start: $network | |
# Should-Stop: $network | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Multi-user daemonized version of syncthing. | |
# Description: Starts the syncthing daemon for all registered users. | |
### END INIT INFO | |
# Replace with users you want to run syncthing clients for | |
# syncthing_USERS="<your name here>" | |
syncthing_USERS="syncthing" | |
DAEMON=/usr/bin/syncthing | |
startd() { | |
for stuser in $syncthing_USERS; do | |
HOMEDIR=$(getent passwd $stuser | awk -F: '{print $6}') | |
if [ -f $config ]; then | |
echo "Starting syncthing for $stuser" | |
start-stop-daemon -b -o -c $stuser -S -u $stuser -x $DAEMON | |
else | |
echo "Couldn't start syncthing for $stuser (no $config found)" | |
fi | |
done | |
} | |
stopd() { | |
for stuser in $syncthing_USERS; do | |
dbpid=$(pgrep -fu $stuser $DAEMON) | |
if [ ! -z "$dbpid" ]; then | |
echo "Stopping syncthing for $stuser" | |
start-stop-daemon -o -c $stuser -K -u $stuser -x $DAEMON | |
fi | |
done | |
} | |
status() { | |
for stuser in $syncthing_USERS; do | |
dbpid=$(pgrep -fu $stuser $DAEMON) | |
if [ -z "$dbpid" ]; then | |
echo "syncthing for USER $stuser: not running." | |
else | |
echo "syncthing for USER $stuser: running (pid $dbpid)" | |
fi | |
done | |
} | |
case "$1" in | |
start) startd | |
;; | |
stop) stopd | |
;; | |
restart|reload|force-reload) stopd && startd | |
;; | |
status) status | |
;; | |
*) echo "Usage: /etc/init.d/syncthing {start|stop|reload|force-reload|restart|status}" | |
exit 1 | |
;; | |
esac | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment