commit: e7cb716612f3e3c92f3ebc2fabbf80db29bd12f2
Author: Michael Mair-Keimberger <mm1ke <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 26 19:56:16 2025 +0000
Commit: Michael Mair-Keimberger <mm1ke <AT> gentoo <DOT> org>
CommitDate: Wed Nov 26 19:56:20 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7cb7166
net-p2p/syncthing: remove unused file
Signed-off-by: Michael Mair-Keimberger <mm1ke <AT> gentoo.org>
net-p2p/syncthing/files/syncthing.initd-r3 | 28 ----------------------------
1 file changed, 28 deletions(-)
diff --git a/net-p2p/syncthing/files/syncthing.initd-r3
b/net-p2p/syncthing/files/syncthing.initd-r3
deleted file mode 100644
index a21fba268b3c..000000000000
--- a/net-p2p/syncthing/files/syncthing.initd-r3
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-SYNCTHING_USER=${SYNCTHING_USER:-syncthing}
-SYNCTHING_GROUP=${SYNCTHING_GROUP:-syncthing}
-SYNCTHING_HOMEDIR=${SYNCTHING_HOMEDIR:-/var/lib/syncthing/.config/syncthing}
-SYNCTHING_LOGFILE=${SYNCTHING_LOGFILE:-/var/log/syncthing/syncthing.log}
-SYNCTHING_GUI_ADDRESS=${SYNCTHING_GUI_ADDRESS:-http://127.0.0.1:8384}
-
-description="Syncthing is an open, trustworthy and decentralized cloud storage
system"
-command="/usr/bin/syncthing"
-command_args="-no-browser -home=${SYNCTHING_HOMEDIR}
-gui-address=${SYNCTHING_GUI_ADDRESS} ${SYNCTHING_OPTS}"
-pidfile="/run/${RC_SVCNAME}.pid"
-command_background="yes"
-command_user="${SYNCTHING_USER}:${SYNCTHING_GROUP}"
-output_log="\"${SYNCTHING_LOGFILE}\""
-error_log="\"${SYNCTHING_LOGFILE}\""
-
-depend() {
- need localmount
- after net
-}
-
-start_pre() {
- checkpath -q -d -o ${SYNCTHING_USER}:${SYNCTHING_GROUP}
${SYNCTHING_HOMEDIR}
- checkpath -q -f -o ${SYNCTHING_USER}:${SYNCTHING_GROUP}
${SYNCTHING_LOGFILE}
-}