Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/radicale/files/
Date: Sun, 10 Mar 2019 14:42:08
Message-Id: 1552228916.ed2b2d92dd55884c139bdf72ecacda9dd0f755b5.whissi@gentoo
1 commit: ed2b2d92dd55884c139bdf72ecacda9dd0f755b5
2 Author: Henning Schild <henning <AT> hennsch <DOT> de>
3 AuthorDate: Sun Mar 10 10:17:56 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 10 14:41:56 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed2b2d92
7
8 www-apps/radicale: clean up FILESDIR
9
10 Remove file made obsolete by a3694f0e6a52.
11
12 Signed-off-by: Henning Schild <henning <AT> hennsch.de>
13 Closes: https://github.com/gentoo/gentoo/pull/11330
14 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
15
16 www-apps/radicale/files/radicale-r1.init.d | 27 ---------------------------
17 1 file changed, 27 deletions(-)
18
19 diff --git a/www-apps/radicale/files/radicale-r1.init.d b/www-apps/radicale/files/radicale-r1.init.d
20 deleted file mode 100644
21 index 9e2ddb7c510..00000000000
22 --- a/www-apps/radicale/files/radicale-r1.init.d
23 +++ /dev/null
24 @@ -1,27 +0,0 @@
25 -#!/sbin/openrc-run
26 -# Copyright 1999-2019 Gentoo Authors
27 -# Distributed under the terms of the GNU General Public License v2
28 -
29 -PIDFILE=/var/run/radicale.pid
30 -
31 -depend() {
32 - use net
33 - need localmount
34 -}
35 -
36 -start() {
37 - ebegin "Starting radicale"
38 - start-stop-daemon --start --quiet --background \
39 - --user radicale \
40 - --stderr-logger /usr/bin/logger \
41 - --pidfile ${PIDFILE} --make-pidfile \
42 - --exec /usr/bin/radicale -- --foreground
43 - eend $?
44 -}
45 -
46 -stop() {
47 - ebegin "Stopping radicale"
48 - start-stop-daemon --stop --quiet \
49 - --pidfile ${PIDFILE}
50 - eend $?
51 -}