forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rspamd.init-r4
48 lines (38 loc) · 1002 Bytes
/
rspamd.init-r4
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
#!/sbin/openrc-run
# Copyright 2015-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
extra_commands="checkconfig"
extra_started_commands="reload"
RUNDIR=/var/run/rspamd
PIDFILE=$RUNDIR/rspamd.pid
depend() {
need net
}
checkconfig() {
/usr/bin/rspamadm configtest -c /etc/rspamd/rspamd.sysvinit.conf > /dev/null \
|| return 1
}
start() {
checkconfig || return 1
ebegin "Starting ${SVCNAME}"
checkpath -d $RUNDIR -m 2750 -o rspamd:rspamd
rm -f $RUNDIR/$SVCNAME.sock
start-stop-daemon --start --quiet --pidfile $PIDFILE -u rspamd -g rspamd \
--exec /usr/bin/rspamd
eend $?
}
stop() {
if [ "${RC_CMD}" = "restart" ] ; then
checkconfig || return 1
fi
ebegin "Stopping ${SVCNAME}"
start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE \
--exec /usr/bin/rspamd
eend $?
}
reload() {
checkconfig || return 1
ebegin "Reloading ${SVCNAME}"
start-stop-daemon --signal HUP --quiet --pidfile $PIDFILE
eend $?
}