blob: db558b819e1a11b9ea0272721f0ed280a2c0046c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/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"
}
|