c49d1a3273
We have not checked for this KEYWORD for a long time now, so this is a complete noop, and thus no PORTREVISION bump. Removing it at this point is mostly for pedantic reasons, and partly to avoid perpetuating this anachronism by copy and paste to future scripts.
29 lines
727 B
Bash
29 lines
727 B
Bash
#!/bin/sh
|
|
#
|
|
|
|
# PROVIDE: doorman
|
|
# REQUIRE: LOGIN
|
|
|
|
#
|
|
# Add the following lines to /etc/rc.conf to enable doorman:
|
|
# doorman_enable (bool): Set to "NO" by default.
|
|
# Set it to "YES" to enable doorman
|
|
# doorman_config (path): Set to "%%PREFIX%%/etc/doormand/doormand.cf" by default.
|
|
#
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name="doorman"
|
|
rcvar=`set_rcvar`
|
|
|
|
[ -z "$doorman_enable" ] && doorman_enable="NO"
|
|
[ -z "$doorman_config" ] && doorman_config="%%PREFIX%%/etc/doormand/doormand.cf"
|
|
|
|
[ -f "$doorman_config" ] || (echo "$doorman_config" does not exist.; exit)
|
|
|
|
command=%%PREFIX%%/sbin/doormand
|
|
pidfile=/var/run/doormand.pid
|
|
command_args="-p $pidfile -f $doorman_config"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|