freebsd-ports/sysutils/cfengine319/files/cf-execd.in
Cy Schubert b2065e0f90 sysutils/cfengine319: Add sysutils/cfengine319
This is the latest release from the cfengine folks.
2021-12-13 06:19:48 -08:00

26 lines
565 B
Bash

#!/bin/sh
# 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=cf_execd_enable
command="%%PREFIX%%/bin/cf-execd"
load_rc_config $name
: ${cf_execd_enable="NO"}
run_rc_command "$1"