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/mailutils/files/pop3d.initd

25 lines
563 B

#!/sbin/openrc-run
#---------------------------------------------------------------------------
# This script starts/stops the GNU Mailutils Pop3d
#---------------------------------------------------------------------------
daemon="GNU Mailutils Pop3d"
exec="/usr/sbin/pop3d"
depend() {
use net
}
start() {
ebegin "Starting $daemon"
start-stop-daemon --start --quiet --exec ${exec} -- -d 1>&2
eend $? "Error starting $daemon"
}
stop() {
ebegin "Stopping $daemon"
start-stop-daemon --stop --quiet --exec ${exec} 1>&2
eend $? "Error stopping $daemon"
}