You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-mail/tpop3d/files/tpop3d-1.5.4.init

30 lines
607 B

#!/sbin/openrc-run
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2
depend() {
need net
}
checkconfig() {
if [ ! -e /etc/tpop3d/tpop3d.conf ] ; then
eerror "You need an /etc/tpop3d/tpop3d.conf file to run tpop3d"
return 1
fi
}
start() {
checkconfig || return 1
ebegin "Starting tpop3d"
start-stop-daemon --start --quiet --background \
--exec /usr/sbin/tpop3d -- -f /etc/tpop3d/tpop3d.conf \
-p /var/run/tpop3d.pid
eend $?
}
stop() {
ebegin "Stopping tpop3d"
start-stop-daemon --stop --quiet --exec /usr/sbin/tpop3d
eend $?
}