blob: 92c34e5d248395395f5be3c563481a15de355b27 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#!/bin/bash
[ -f /etc/conf.d/dbmail ] && . /etc/conf.d/dbmail
. /etc/rc.conf
. /etc/rc.d/functions
case "$1" in
start)
for daemon in $DBMAIL_DAEMONS; do
stat_busy "Starting DbMail ${daemon}"
/usr/sbin/${daemon}
if [ $? -gt 0 ]; then
stat_fail
else
stat_done
fi
done
add_daemon dbmail
;;
stop)
for daemon in $DBMAIL_DAEMONS; do
stat_busy "Stopping DbMail ${daemon}"
pid=$(cat /var/run/${daemon}.pid)
kill $pid
sleep 4
stat_done
done
rm_daemon dbmail
;;
restart)
$0 stop
sleep 3
$0 start
;;
*)
echo "usage: $0 {start|stop|restart}"
;;
esac
exit 0
|