commit: ed2b2d92dd55884c139bdf72ecacda9dd0f755b5 Author: Henning Schild <henning <AT> hennsch <DOT> de> AuthorDate: Sun Mar 10 10:17:56 2019 +0000 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org> CommitDate: Sun Mar 10 14:41:56 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed2b2d92
www-apps/radicale: clean up FILESDIR Remove file made obsolete by a3694f0e6a52. Signed-off-by: Henning Schild <henning <AT> hennsch.de> Closes: https://github.com/gentoo/gentoo/pull/11330 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org> www-apps/radicale/files/radicale-r1.init.d | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/www-apps/radicale/files/radicale-r1.init.d b/www-apps/radicale/files/radicale-r1.init.d deleted file mode 100644 index 9e2ddb7c510..00000000000 --- a/www-apps/radicale/files/radicale-r1.init.d +++ /dev/null @@ -1,27 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -PIDFILE=/var/run/radicale.pid - -depend() { - use net - need localmount -} - -start() { - ebegin "Starting radicale" - start-stop-daemon --start --quiet --background \ - --user radicale \ - --stderr-logger /usr/bin/logger \ - --pidfile ${PIDFILE} --make-pidfile \ - --exec /usr/bin/radicale -- --foreground - eend $? -} - -stop() { - ebegin "Stopping radicale" - start-stop-daemon --stop --quiet \ - --pidfile ${PIDFILE} - eend $? -}
