blob: f689f90edeb583de8465bd218971f86b720f7a0d (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
#!/bin/sh
### BEGIN INIT INFO
# Provides: mailgraph
# Required-Start: $local_fs $remote_fs
# Required-Stop: $local_fs $remote_fs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Mail statistics frontend for Postfix
### END INIT INFO
MAILGRAPH_CONFIG="/etc/default/mailgraph"
NAME="mailgraph"
DAEMON="/usr/sbin/mailgraph"
PID_FILE="/var/run/mailgraph.pid"
RRD_DIR="/var/lib/mailgraph"
# Default values
BOOT_START=true
MAIL_LOG=/var/log/mail.log
IGNORE_LOCALHOST=true
EXTRA_OPTIONS=
HTTP_USER=www-data
HTTP_GROUP=www-data
[ -r $MAILGRAPH_CONFIG ] && . $MAILGRAPH_CONFIG
[ -x $DAEMON ] || exit 0
[ "$BOOT_START" = "true" ] || exit 0
[ "$IGNORE_LOCALHOST" = "true" ] && IGNORE_OPTION="--ignore-localhost"
. /lib/lsb/init-functions
case "$1" in
start)
# Check that the data directory is writable by the user running
# the HTTP daemon
if [ -d $RRD_DIR ]; then
chown $HTT_USER:$HTTP_GROUP $RRD_DIR
chmod 755 $RRD_DIR
fi
log_begin_msg "Starting $DESC:" "$NAME"
if [ -f $PIDFILE ]; then
log_action_cont_msg " already running"
log_end_msg 1
else
start-stop-daemon -S -q -b -p $PID_FILE -x $DAEMON -- -l $MAIL_LOG -d --daemon_pid=$PID_FILE \
--daemon_rrd=$RRD_DIR $IGNORE_OPTION $EXTRA_OPTIONS
log_end_msg $?
fi
;;
stop)
log_begin_msg "Stopping $DESC:" "$NAME"
start-stop-daemon --stop --pidfile $PIDFILE
rm -f $PIDFILE
log_end_msg $?
;;
restart|force-reload)
$0 stop
$0 start
;;
*)
echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload}" >&2
exit 3
;;
esac
|