summaryrefslogtreecommitdiff
path: root/pcr/openrc-net/syncthing.initd
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/openrc-net/syncthing.initd')
-rw-r--r--pcr/openrc-net/syncthing.initd22
1 files changed, 0 insertions, 22 deletions
diff --git a/pcr/openrc-net/syncthing.initd b/pcr/openrc-net/syncthing.initd
deleted file mode 100644
index 1e5f9c678..000000000
--- a/pcr/openrc-net/syncthing.initd
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/openrc-run
-# Copyright 1999-2014 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 /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 /run/syncthing.pid --user ${SYNCTHING_USER}
- eend $?
-}