2009-02-10 22:37:55 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
# PROVIDE: cf-execd
|
|
|
|
# REQUIRE: SERVERS
|
|
|
|
# BEFORE: DAEMON
|
|
|
|
# KEYWORD: shutdown
|
|
|
|
#
|
|
|
|
# Add the following line to /etc/rc.conf[.local] to enable cf-execd(8)
|
|
|
|
#
|
|
|
|
# cf-execd_enable (bool): Set to "NO" by default.
|
|
|
|
# Set it to "YES" to enable cf-execd.
|
|
|
|
# cf-execd_flags (str): Custom additional arguments to be passed
|
|
|
|
# to cf-execd (default empty).
|
|
|
|
#
|
|
|
|
|
2010-03-27 01:15:24 +01:00
|
|
|
. /etc/rc.subr
|
2009-02-10 22:37:55 +01:00
|
|
|
|
2010-07-21 00:27:20 +02:00
|
|
|
name="cf-execd"
|
2009-02-10 22:37:55 +01:00
|
|
|
rcvar=${name}_enable
|
|
|
|
|
|
|
|
command="%%PREFIX%%/sbin/${name}"
|
|
|
|
|
|
|
|
load_rc_config $name
|
|
|
|
|
2009-12-22 00:28:42 +01:00
|
|
|
: ${cf_execd_enable="NO"}
|
2009-02-10 22:37:55 +01:00
|
|
|
|
|
|
|
run_rc_command "$1"
|