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.
50 lines
1,008 B
Bash
50 lines
1,008 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: dkimproxy_in
|
|
# REQUIRE: LOGIN
|
|
# BEFORE: mail
|
|
# KEYWORD: shutdown
|
|
|
|
#
|
|
# Add the following lines to /etc/rc.conf to enable dkimproxy.in:
|
|
#
|
|
# dkimproxy_in_enable="YES"
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name=dkimproxy_in
|
|
rcvar=dkimproxy_in_enable
|
|
|
|
# set defaults
|
|
: ${dkimproxy_in_enable="NO"}
|
|
|
|
command_interpreter=%%PERL%%
|
|
command=%%PREFIX%%/bin/dkimproxy.in
|
|
required_files=%%PREFIX%%/etc/${name}.conf
|
|
dkimproxy_in_user=%%DKIMPROXYUSER%%
|
|
command_args="--conf_file=${required_files} --user=${dkimproxy_in_user} --daemonize"
|
|
|
|
start_postcmd=start_postcmd
|
|
stop_postcmd=stop_postcmd
|
|
|
|
# dkimproxy_in/out return 0 even if startup failed
|
|
start_postcmd(){
|
|
pid=$( check_process ${command} ${command_interpreter} )
|
|
if [ -n "${pid}" ]; then
|
|
echo "Starting ${name} done."
|
|
logger -t ${name} "Starting ${name}"
|
|
else
|
|
echo "Starting ${name} failed."
|
|
logger -t ${name} "Starting ${name} failed"
|
|
fi
|
|
}
|
|
|
|
stop_postcmd(){
|
|
logger -t ${name} "Stopped ${name}"
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|