ports/sysutils/puppet/files/puppet.in
Li-Wen Hsu 43e71a5c00 - Update to 2.6.1rc1
PR:		ports/149213
Submitted by:	Russell Jackson <raj AT csub.edu> (maintainer)
2010-08-04 17:06:24 +00:00

32 lines
511 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: puppet
# REQUIRE: NETWORK
#
# Add the following lines to /etc/rc.conf to enable the puppet agent:
#
# puppet_enable="YES"
. /etc/rc.subr
name="puppet"
rcvar=`set_rcvar`
load_rc_config "$name"
: ${puppet_enable="NO"}
: ${puppet_rundir="%%PUPPET_RUNDIR%%"}
: ${puppet_flags=""}
command_interpreter="%%PREFIX%%/bin/ruby18"
command="%%PREFIX%%/bin/puppet"
command_args="agent ${puppet_flags}"
unset puppet_flags
pidfile="${puppet_rundir}/agent.pid"
run_rc_command "$1"