diff options
Diffstat (limited to 'app-admin/puppet/files/puppetmaster-0.25.init')
-rwxr-xr-x | app-admin/puppet/files/puppetmaster-0.25.init | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app-admin/puppet/files/puppetmaster-0.25.init b/app-admin/puppet/files/puppetmaster-0.25.init new file mode 100755 index 000000000000..a543e99405a2 --- /dev/null +++ b/app-admin/puppet/files/puppetmaster-0.25.init @@ -0,0 +1,40 @@ +#!/sbin/runscript +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +depend() { + need localmount net + use dns logger slapd netmount nfsmount +} + +checkconfig() { + if [ ! -d "${PUPPETMASTER_PID_DIR}" ] ; then + eerror "Please make sure PUPPETMASTER_PID_DIR is defined and points to a existing directory" + return 1 + fi + + return 0 +} + +start() { + checkconfig || return $? + + local options="" + [ -n "${PUPPETMASTER_EXTRA_OPTS}" ] && options="${options} ${PUPPETMASTER_EXTRA_OPTS}" + + ebegin "Starting puppetmaster" + start-stop-daemon --start --quiet \ + --pidfile "${PUPPETMASTER_PID_DIR}/puppetmasterd.pid" \ + --exec /usr/sbin/puppetmasterd -- ${options} + eend $? "Failed to start puppetmaster" +} + +stop() { + ebegin "Stopping puppetmaster" + start-stop-daemon --stop --quiet \ + --pidfile "${PUPPETMASTER_PID_DIR}/puppetmasterd.pid" + local ret=$? + eend ${ret} "Failed to stop puppetmaster" + rm -f "${PUPPETMASTER_PID_DIR}/puppetmasterd.pid" + return ${ret} +} |