summaryrefslogtreecommitdiff
path: root/net-p2p/syncthing/files/rc/init
blob: 029e567da6ae4383989cf4dc9efa0ff9b98c49b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/sbin/runscript
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

depend() {
  need net
}

start() {
  ebegin "Starting syncthing"
  start-stop-daemon --start --make-pidfile --pidfile /var/run/syncthing.pid \
    --background --user ${SYNCTHING_USER} --name syncthing \
    --exec /usr/bin/syncthing -- -gui-address=${SYNCTHING_ADDRESS} ${SYNCTHING_ARGS}
  eend $?
}

stop() {
  ebegin "Stopping syncthing"
  start-stop-daemon --stop --pidfile /var/run/syncthing.pid --user ${SYNCTHING_USER}
  eend $?
}