ports/sysutils/cfengine3/files/cf-serverd.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
598 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: cf-serverd
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add the following line to /etc/rc.conf[.local] to enable cf-serverd(8)
#
# cf_serverd_enable (bool): Set to "NO" by default.
# Set it to "YES" to enable cf-serverd.
# cf_serverd_flags (str): Custom additional arguments to be passed
# to cf-serverd (default empty).
#
. /etc/rc.subr
name="cf_serverd"
rcvar=${name}_enable
command="%%PREFIX%%/sbin/cf-serverd"
load_rc_config $name
: ${cf_serverd_enable="NO"}
run_rc_command "$1"