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.
30 lines
564 B
Bash
30 lines
564 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: sixxs-aiccu
|
|
# REQUIRE: NETWORKING
|
|
|
|
#
|
|
# Add the following lines to /etc/rc.conf to enable sixxs-aiccu:
|
|
#
|
|
#sixxs_aiccu_enable="YES"
|
|
#
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name=sixxs_aiccu
|
|
rcvar=`set_rcvar`
|
|
|
|
command="%%PREFIX%%/sbin/sixxs-aiccu"
|
|
command_args=%%PREFIX%%/etc/aiccu.conf
|
|
start_cmd="%%PREFIX%%/sbin/sixxs-aiccu start $command_args"
|
|
stop_cmd="%%PREFIX%%/sbin/sixxs-aiccu stop $command_args"
|
|
required_files=%%PREFIX%%/etc/aiccu.conf
|
|
|
|
# set default
|
|
sixxs_aiccu_enable=${sixxs_aiccu_enable:-"NO"}
|
|
|
|
load_rc_config ${name}
|
|
run_rc_command "$1"
|