mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
83eb2c3700
literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other.
36 lines
724 B
Bash
36 lines
724 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: sastatd
|
|
# REQUIRE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
# Add the following lines to /etc/rc.conf to enable :
|
|
#
|
|
# sastatd_enable="YES"
|
|
# sastatd_spamd_log="/var/log/spamd.log"
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
name="sastatd"
|
|
rcvar=sastatd_enable
|
|
|
|
load_rc_config "$name"
|
|
: ${sastatd_enable="NO"}
|
|
: ${sastatd_database="%%SASTATD_DBDIR%%/sastatd.db"}
|
|
: ${sastatd_setuid="%%SASTATD_USER%%"}
|
|
: ${sastatd_pidfile="%%SASTATD_RUNDIR%%/sastatd.pid"}
|
|
: ${sastatd_flags="-d ${sastatd_database} -p ${sastatd_pidfile} -u ${sastatd_setuid}"}
|
|
: ${sastatd_spamd_log="/var/log/spamd.log"}
|
|
|
|
command="%%PREFIX%%/bin/sastatd"
|
|
command_args="${sastatd_flags} ${sastatd_spamd_log}"
|
|
pidfile="${sastatd_pidfile}"
|
|
|
|
run_rc_command "$1"
|
|
|