summaryrefslogtreecommitdiff
path: root/sysutils/cfengine36/files/cf-execd.in
diff options
context:
space:
mode:
authorGlen Barber <gjb@FreeBSD.org>2014-04-01 19:06:05 +0000
committerGlen Barber <gjb@FreeBSD.org>2014-04-01 19:06:05 +0000
commit3a763be51f8888f179d20d0bf822763c119a0dea (patch)
treeb7e0966e38e0146cead8e08a710f131a06adc070 /sysutils/cfengine36/files/cf-execd.in
parent- Stagify (diff)
Add cfengine 3.6.0b1
Submitted by: skreuzer Approved by: cy (maintainer, implicit) Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=349879
Diffstat (limited to 'sysutils/cfengine36/files/cf-execd.in')
-rw-r--r--sysutils/cfengine36/files/cf-execd.in28
1 files changed, 28 insertions, 0 deletions
diff --git a/sysutils/cfengine36/files/cf-execd.in b/sysutils/cfengine36/files/cf-execd.in
new file mode 100644
index 000000000000..1ee33104e76e
--- /dev/null
+++ b/sysutils/cfengine36/files/cf-execd.in
@@ -0,0 +1,28 @@
+#!/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=cf_execd_enable
+
+command="%%PREFIX%%/sbin/cf-execd"
+
+load_rc_config $name
+
+: ${cf_execd_enable="NO"}
+
+run_rc_command "$1"