forked from Lainports/freebsd-ports
29 lines
599 B
Bash
29 lines
599 B
Bash
#!/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).
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="cf-execd"
|
|
rcvar=${name}_enable
|
|
|
|
command="%%PREFIX%%/sbin/${name}"
|
|
|
|
load_rc_config $name
|
|
|
|
: ${cf_execd_enable="NO"}
|
|
|
|
run_rc_command "$1"
|