blob: db558b819e1a11b9ea0272721f0ed280a2c0046c [file] [log] [blame]
#!/sbin/runscript
#---------------------------------------------------------------------------
# This script starts/stops the GNU Mailutils Comsatd
#---------------------------------------------------------------------------
daemon="GNU Mailutils Comsatd"
exec="/usr/sbin/comsatd"
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"
}