Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/files/
Date: Thu, 26 May 2022 20:31:38
Message-Id: 1653597043.86050840cdca4973e35ea81d2101b4d63d5cbf80.conikost@gentoo
1 commit: 86050840cdca4973e35ea81d2101b4d63d5cbf80
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Thu May 26 18:14:25 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Thu May 26 20:30:43 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86050840
7
8 net-p2p/syncthing: remove unused file
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
12 Closes: https://github.com/gentoo/gentoo/pull/25649
13 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
14
15 net-p2p/syncthing/files/syncthing.initd-r1 | 32 ------------------------------
16 1 file changed, 32 deletions(-)
17
18 diff --git a/net-p2p/syncthing/files/syncthing.initd-r1 b/net-p2p/syncthing/files/syncthing.initd-r1
19 deleted file mode 100644
20 index cc7e1b75e985..000000000000
21 --- a/net-p2p/syncthing/files/syncthing.initd-r1
22 +++ /dev/null
23 @@ -1,32 +0,0 @@
24 -#!/sbin/openrc-run
25 -# Copyright 1999-2021 Gentoo Authors
26 -# Distributed under the terms of the GNU General Public License v2
27 -
28 -SYNCTHING_USER=${SYNCTHING_USER:-syncthing}
29 -SYNCTHING_GROUP=${SYNCTHING_GROUP:-syncthing}
30 -SYNCTHING_HOMEDIR=${SYNCTHING_HOMEDIR:-/var/lib/syncthing/.config/syncthing}
31 -SYNCTHING_LOGFILE=${SYNCTHING_LOGFILE:-/var/log/syncthing/syncthing.log}
32 -SYNCTHING_UMASK=${SYNCTHING_UMASK:-007}
33 -SYNCTHING_IONICE=${SYNCTHING_IONICE:-0}
34 -SYNCTHING_NICE=${SYNCTHING_NICE:-0}
35 -
36 -description="Syncthing is an open, trustworthy and decentralized cloud storage system"
37 -command="/usr/bin/syncthing"
38 -command_args="-no-browser -home=${SYNCTHING_HOMEDIR} ${SYNCTHING_OPTS}"
39 -pidfile="/run/syncthing.pid"
40 -command_background="yes"
41 -command_user="${SYNCTHING_USER}:${SYNCTHING_GROUP}"
42 -umask="${SYNCTHING_UMASK}"
43 -start_stop_daemon_args="--ionice ${SYNCTHING_IONICE} \
44 - --nicelevel ${SYNCTHING_NICE}"
45 -output_log="\"${SYNCTHING_LOGFILE}\""
46 -error_log="\"${SYNCTHING_LOGFILE}\""
47 -
48 -depend() {
49 - need localmount net
50 -}
51 -
52 -start_pre() {
53 - checkpath -q -d -o ${SYNCTHING_USER}:${SYNCTHING_GROUP} ${SYNCTHING_HOMEDIR}
54 - checkpath -q -f -o ${SYNCTHING_USER}:${SYNCTHING_GROUP} ${SYNCTHING_LOGFILE}
55 -}