mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-12 11:31:18 +02:00
29 lines
658 B
Bash
29 lines
658 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD: head/sysutils/cfengine39/files/cf-execd.in 349879 2014-04-01 19:06:05Z gjb $
|
|
#
|
|
# 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%%/sbin/cf-execd"
|
|
|
|
load_rc_config $name
|
|
|
|
: ${cf_execd_enable="NO"}
|
|
|
|
run_rc_command "$1"
|