diff options
author | Henning Schild <henning@hennsch.de> | 2019-03-10 11:17:56 +0100 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2019-03-10 15:41:56 +0100 |
commit | ed2b2d92dd55884c139bdf72ecacda9dd0f755b5 (patch) | |
tree | a9d548fcdb2d548d47518fb3696fb913efde79da /www-apps/radicale | |
parent | net-dialup/mgetty: sh stable wrt bug #677094 (diff) | |
download | gentoo-ed2b2d92dd55884c139bdf72ecacda9dd0f755b5.tar.gz gentoo-ed2b2d92dd55884c139bdf72ecacda9dd0f755b5.tar.bz2 gentoo-ed2b2d92dd55884c139bdf72ecacda9dd0f755b5.zip |
www-apps/radicale: clean up FILESDIR
Remove file made obsolete by a3694f0e6a52.
Signed-off-by: Henning Schild <henning@hennsch.de>
Closes: https://github.com/gentoo/gentoo/pull/11330
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'www-apps/radicale')
-rw-r--r-- | www-apps/radicale/files/radicale-r1.init.d | 27 |
1 files changed, 0 insertions, 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 9e2ddb7c510c..000000000000 --- 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 $? -} |