aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-mail/courier-imap/files/courier-imap-4.0.6-r1-courier-pop3d.rc6')
-rw-r--r--net-mail/courier-imap/files/courier-imap-4.0.6-r1-courier-pop3d.rc635
1 files changed, 0 insertions, 35 deletions
diff --git a/net-mail/courier-imap/files/courier-imap-4.0.6-r1-courier-pop3d.rc6 b/net-mail/courier-imap/files/courier-imap-4.0.6-r1-courier-pop3d.rc6
deleted file mode 100644
index 80aeabd..0000000
--- a/net-mail/courier-imap/files/courier-imap-4.0.6-r1-courier-pop3d.rc6
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- need net courier-authlib
- use famd
-}
-
-. /etc/courier-imap/pop3d
-
-checkconfig() {
- if [ ! -e /etc/courier-imap/pop3d ] ; then
- eerror "You need an /etc/courier-imap/pop3d file to run courier-pop3d"
- return 1
- fi
- . /etc/courier-imap/pop3d || {
- eerror "There are syntax errors in /etc/courier-imap/pop3d"
- eerror "Please correct them before trying to start courier-pop3d"
- return 2
- }
-}
-
-start() {
- checkconfig || return 1
- ebegin "Starting courier-pop3d"
- /usr/bin/env - /usr/GENTOO_LIBDIR/courier-imap/gentoo-pop3d.rc --pidfile ${PIDFILE}
- eend $?
-}
-
-stop() {
- ebegin "Stopping courier-pop3d"
- start-stop-daemon --quiet --stop --pidfile ${PIDFILE}
- eend $?
-}