7e01892a92
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@1183 6952d904-891a-0410-993b-d76249ca496b
38 lines
945 B
Plaintext
Executable File
38 lines
945 B
Plaintext
Executable File
#!/sbin/runscript
|
|
# Copyright 1999-2004 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-mail/courier-imap/files/courier-imapd.rc6,v 1.6 2004/06/26 23:30:58 robbat2 Exp $
|
|
|
|
depend() {
|
|
need net authdaemond
|
|
use famd
|
|
}
|
|
|
|
source /etc/courier-imap/imapd
|
|
|
|
checkconfig() {
|
|
if [ ! -e /etc/courier-imap/imapd ] ; then
|
|
eerror "You need an /etc/courier-imap/imapd file to run courier-imapd"
|
|
return 1
|
|
fi
|
|
source /etc/courier-imap/imapd || {
|
|
eerror "There are syntax errors in /etc/courier-imap/imapd"
|
|
eerror "Please correct them before trying to start imapd"
|
|
return 2
|
|
}
|
|
}
|
|
|
|
start() {
|
|
checkconfig || return 1
|
|
ebegin "Starting courier-imapd"
|
|
start-stop-daemon --quiet --start --exec /usr/bin/env - /usr/lib/courier-imap/gentoo-imapd.rc \
|
|
--pid=$PIDFILE
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping courier-imapd"
|
|
start-stop-daemon --quiet --stop --pid=$PIDFILE
|
|
eend $?
|
|
}
|