blob: 7dab9dfbf92a0acd8a6c366080dfff6f966506e0 (
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
35
|
#!/bin/sh
# Start or stop pyspamd
# $FreeBSD$
# PROVIDE: pyspamd
# REQUIRE: DAEMON
# KEYWORD: shutdown
#
prefix=/usr/local
# 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=`set_rcvar`
load_rc_config $name
: ${pyspamd_enable="NO"}
: ${pyspamd_config="/usr/local/etc/bayescustomize.ini"}
command="/usr/sbin/daemon"
command_args=" -p /var/run/pyspamd.pid /usr/local/bin/python -OO /usr/local/bin/sb_server.py 2>&1 >/dev/null"
pidfile="/var/run/pyspamd.pid"
procname="/usr/local/bin/python"
export BAYESCUSTOMIZE=${pyspamd_config}
run_rc_command "$1"
|