diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2022-05-26 20:14:25 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-05-26 22:30:43 +0200 |
commit | 86050840cdca4973e35ea81d2101b4d63d5cbf80 (patch) | |
tree | 60d54da19e7e63df89bd33516dfce486e3ad42f3 /net-p2p | |
parent | mail-client/neomutt: remove unused patch(es) (diff) | |
download | gentoo-86050840cdca4973e35ea81d2101b4d63d5cbf80.tar.gz gentoo-86050840cdca4973e35ea81d2101b4d63d5cbf80.tar.bz2 gentoo-86050840cdca4973e35ea81d2101b4d63d5cbf80.zip |
net-p2p/syncthing: remove unused file
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/25649
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/syncthing/files/syncthing.initd-r1 | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/net-p2p/syncthing/files/syncthing.initd-r1 b/net-p2p/syncthing/files/syncthing.initd-r1 deleted file mode 100644 index cc7e1b75e985..000000000000 --- a/net-p2p/syncthing/files/syncthing.initd-r1 +++ /dev/null @@ -1,32 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2021 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_UMASK=${SYNCTHING_UMASK:-007} -SYNCTHING_IONICE=${SYNCTHING_IONICE:-0} -SYNCTHING_NICE=${SYNCTHING_NICE:-0} - -description="Syncthing is an open, trustworthy and decentralized cloud storage system" -command="/usr/bin/syncthing" -command_args="-no-browser -home=${SYNCTHING_HOMEDIR} ${SYNCTHING_OPTS}" -pidfile="/run/syncthing.pid" -command_background="yes" -command_user="${SYNCTHING_USER}:${SYNCTHING_GROUP}" -umask="${SYNCTHING_UMASK}" -start_stop_daemon_args="--ionice ${SYNCTHING_IONICE} \ - --nicelevel ${SYNCTHING_NICE}" -output_log="\"${SYNCTHING_LOGFILE}\"" -error_log="\"${SYNCTHING_LOGFILE}\"" - -depend() { - need localmount net -} - -start_pre() { - checkpath -q -d -o ${SYNCTHING_USER}:${SYNCTHING_GROUP} ${SYNCTHING_HOMEDIR} - checkpath -q -f -o ${SYNCTHING_USER}:${SYNCTHING_GROUP} ${SYNCTHING_LOGFILE} -} |