freebsd-ports/sysutils/cfengine311/files/cf-serverd.in
Cy Schubert 785c57d0de cfengine 3.11 moved its sbin binaries to bin. Fix this.
Reported by:	des@
Pointy hat to:	cy@
MFH:		2018Q2
2018-04-13 00:44:57 +00:00

28 lines
600 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=cf_serverd_enable
command="%%PREFIX%%/bin/cf-serverd"
load_rc_config $name
: ${cf_serverd_enable="NO"}
run_rc_command "$1"