summaryrefslogtreecommitdiff
path: root/mail/py-spambayes/files/pyspamd.in
blob: 3336584074f45fc33919510fc8c5d82f3441ea7a (plain) (blame)
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
#!/bin/sh

# Start or stop pyspamd
# $FreeBSD$

# PROVIDE: pyspamd
# REQUIRE: DAEMON
# KEYWORD: shutdown
#

# Define these pyspamd_* variables in one of these files:
#       /etc/rc.conf
#       /etc/rc.conf.local
#
# DO NOT CHANGE THESE DEFAULT VALUES HERE
#

. /etc/rc.subr

name="pyspamd"
rcvar=pyspamd_enable

load_rc_config $name

: ${pyspamd_enable="NO"}
: ${pyspamd_config="%%PREFIX%%/etc/bayescustomize.ini"}

command="/usr/sbin/daemon"
pidfile="/var/run/pyspamd.pid"
command_args="-p ${pidfile} %%PYTHON_CMD%% -OO %%PREFIX%%/bin/sb_server.py 2>&1 >/dev/null"
procname="%%PYTHON_CMD%%"
export BAYESCUSTOMIZE=${pyspamd_config}

run_rc_command "$1"