summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2020-06-18 20:21:45 +0200
committerHanno Böck <hanno@gentoo.org>2020-06-19 10:04:31 +0200
commit4607f2322bcda84b70b866a2a24aa74b558416ab (patch)
treeb3998c2d6af2d760d4656fb8955cd2bef470b916 /net-libs/courier-authlib
parentdev-libs/nss: Re-add aarch64 cross compile fix (diff)
downloadgentoo-4607f2322bcda84b70b866a2a24aa74b558416ab.tar.gz
gentoo-4607f2322bcda84b70b866a2a24aa74b558416ab.tar.bz2
gentoo-4607f2322bcda84b70b866a2a24aa74b558416ab.zip
net-libs/courier-authlib: remove unused file
Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Signed-off-by: Hanno Böck <hanno@gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/16312
Diffstat (limited to 'net-libs/courier-authlib')
-rw-r--r--net-libs/courier-authlib/files/courier-authlib-r140
1 files changed, 0 insertions, 40 deletions
diff --git a/net-libs/courier-authlib/files/courier-authlib-r1 b/net-libs/courier-authlib/files/courier-authlib-r1
deleted file mode 100644
index 5730139a02af..000000000000
--- a/net-libs/courier-authlib/files/courier-authlib-r1
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- need net
- provide authdaemond
-}
-
-checkconfig() {
- if [ ! -e /etc/courier/authlib/authdaemonrc ] ; then
- eerror "You need an /etc/courier/authlib/authdaemonrc file to run authdaemon"
- return 1
- fi
-}
-
-setauth() {
- . /etc/courier/authlib/authdaemonrc
- AUTHLIB="/usr/lib/courier/courier-authlib"
- AUTHDAEMOND="authdaemond"
- pidfile="/var/run/authdaemon.pid"
- logger="/usr/sbin/courierlogger"
- export DEBUG_LOGIN DEFAULTOPTIONS LOGGEROPTS
-}
-
-start() {
- checkconfig || return 1
- setauth
- ebegin "Starting courier-authlib: ${AUTHDAEMOND}"
- start-stop-daemon --quiet --start --pidfile "${pidfile}" --exec \
- /usr/bin/env ${logger} -- ${LOGGEROPTS} -pid="${pidfile}" -start "${AUTHLIB}/${AUTHDAEMOND}"
- eend $?
-}
-
-stop() {
- setauth
- ebegin "Stopping courier-authlib: ${AUTHDAEMOND}"
- start-stop-daemon --quiet --stop --pidfile "${pidfile}"
- eend $?
-}