gentoo-overlay/net-mail/dbmail/files/dbmail-pop3d.initd

41 lines
734 B
Text
Raw Permalink Normal View History

2022-11-05 07:01:35 -05:00
#!/sbin/openrc-run
2013-07-20 19:33:36 -05:00
#
2022-11-05 07:01:35 -05:00
PIDFILE="/run/dbmail/dbmail-pop3d.pid"
2013-07-20 19:33:36 -05:00
depend() {
need net
use mysql
use pgsql
after mta
}
checkconfig() {
if [ ! -e "/etc/dbmail/dbmail.conf" ]; then
eerror "You need to create apropriate config"
eerror "in /etc/dbmail/ . Example can be found in /etc/dbmail/dbmail.conf.dist"
return 1
fi
# Avoid using root's TMPDIR
unset TMPDIR
}
start() {
checkconfig && \
ebegin "Starting DBMail POP3 daemon"
start-stop-daemon --start --quiet \
--exec /usr/sbin/dbmail-pop3d \
--name dbmail-pop3d \
-- -p ${PIDFILE} -f /etc/dbmail/dbmail.conf 2>&1
eend $?
}
stop() {
ebegin "Stopping DBMail POP3 daemon"
start-stop-daemon --stop --quiet --retry 5 \
--pidfile ${PIDFILE}
eend $?
}