freebsd-ports/sysutils/cfengine3/files/cf-execd.in
Cy Schubert cce8218e40 Replace dashes ("-") in rc scripts with underbars ("_").
PR:		155495
Submitted by:	arin Atanasov Nikolov <dnaeon@gmail.com>
2011-03-13 01:21:18 +00:00

28 lines
580 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: cf-execd
# REQUIRE: LOGIN
# 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/cf-execd"
load_rc_config $name
: ${cf_execd_enable="NO"}
run_rc_command "$1"