mirror of
https://git.freebsd.org/ports.git
synced 2025-05-03 12:06:39 -04:00
Add ports for the new cfengine and cfengine-masterfiles 3.21.0. Make cfengine321 and cfengine-masterfiles321 the default cfengine ports/packages.
26 lines
595 B
Bash
26 lines
595 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: cf-monitord
|
|
# REQUIRE: LOGIN
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following line to /etc/rc.conf[.local] to enable cf-monitord(8)
|
|
#
|
|
# cf_monitord_enable (bool): Set to "NO" by default.
|
|
# Set it to "YES" to enable cf-monitord.
|
|
# cf_monitord_flags (str): Custom additional arguments to be passed
|
|
# to cf-monitord (default empty).
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="cf_monitord"
|
|
rcvar=cf_monitord_enable
|
|
|
|
command="%%PREFIX%%/bin/cf-monitord"
|
|
|
|
load_rc_config $name
|
|
|
|
: ${cf_monitord_enable="NO"}
|
|
|
|
run_rc_command "$1"
|