aports/main/fetchmail/fetchmail.initd
Jesse Young ae1967b66e Replace instances of "--chuid" to "--user" in initd scripts
Fixes #776

Signed-off-by: Jesse Young <jlyo@jlyo.org>
2011-12-01 07:15:51 +00:00

35 lines
706 B
Plaintext
Executable File

#!/sbin/runscript
pidfile=/var/run/fetchmail/fetchmail.pid
depend() {
need net
after firewall
use mta
}
checkconfig() {
if [ ! -f /etc/fetchmailrc ]; then
eerror "Configuration file /etc/fetchmailrc not found"
return 1
fi
}
start() {
checkconfig || return 1
ebegin "Starting fetchmail"
start-stop-daemon --start --quiet \
--user fetchmail --exec /usr/bin/fetchmail \
-- -d ${polling_period:-300} -f /etc/fetchmailrc \
--pidfile ${pidfile} -i /var/lib/fetchmail/.fetchids
eend ${?}
}
stop() {
ebegin "Stopping fetchmail"
start-stop-daemon --stop --quiet --pidfile ${pidfile}
eend ${?}
}