#!/sbin/runscript # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-admin/puppet-agent/files/mcollective.initd,v 1.1 2015/07/18 23:22:16 prometheanfire Exp $ MCOLLECTIVE_PID_DIR="${MCOLLECTIVE_PID_DIR:-/var/run/puppetlabs}" command="/usr/sbin/mcollectived" pidfile="${MCOLLECTIVE_PID_DIR}/mcollectived.pid" command_args="--pidfile ${pidfile} --config=/etc/puppetlabs/mcollective/server.cfg --daemonize" depend() { need net } start_pre() { checkpath --directory "${MCOLLECTIVE_PID_DIR}" }