summaryrefslogtreecommitdiffstats
path: root/freebsd/rspamd.sh.in
blob: c527a6d1d9245ebfcf9fe4ecc2165ebd04d4e820 (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
#!/bin/sh
#
# $Id$
#
# PROVIDE: rspamd
# REQUIRE: LOGIN
# KEYWORD: shutdown

#
# Add the following line to /etc/rc.conf to enable countd:
# rspamd (bool):          Set to "NO" by default.
#                          Set it to "YES" to enable rspamd.

. /etc/rc.subr

name="rspamd"
rcvar=`set_rcvar`
procname="@CMAKE_INSTALL_PREFIX@/bin/rspamd"
restart_precmd="rspamd_checkconfig"
reload_precmd="rspamd_checkconfig"
configtest_cmd="rspamd_checkconfig"
reopenlog_cmd="reopenlog_cmd"

load_rc_config $name

: ${rspamd_enable="NO"}
: ${rspamd_pidfile="/var/run/rspamd/rspamd.pid"}
: ${rspamd_run_user="@RSPAMD_USER@"}
: ${rspamd_run_group="@RSPAMD_GROUP@"}

pidfile="$rspamd_pidfile"

stop_postcmd="rm -f $rspamd_pidfile"

rspamd_checkconfig()
{
	echo "Performing sanity check on rspamd configuration:"
	eval ${command} -t
}

reopenlog_cmd()
{
   pkill -USR1 -F $rspamd_pidfile
}

extra_commands="reload configtest reopenlog"
sig_reload="HUP"

command="$procname"
command_args="-u ${rspamd_run_user} -g ${rspamd_run_group} -c @CMAKE_INSTALL_PREFIX@/etc/rspamd.xml"

run_rc_command "$1"