Sha256: b4027f3b7f9a2393ad4846a23b1d7cf2910ab0a17bb1fef795a8973635f394d2

Contents?: true

Size: 1.46 KB

Versions: 275

Compression:

Stored size: 1.46 KB

Contents

#!/sbin/runscript
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

depend() {
    need net
    before puppet
    use dns logger
}

checkconfig() {
    if [[ ! -d "${PUPPETMASTER_PID_DIR}" ]] ; then
        eerror "Please make sure PUPPETMASTER_PID_DIR is defined and points to an existing directory"
        return 1
    fi

    local site_manifest="/etc/puppet/manifests/site.pp"
    [[ -n "${PUPPETMASTER_MANIFEST}" ]] && site_manifest="${PUPPETMASTER_MANIFEST}"

    if [ ! -f "${site_manifest}" ] ; then
        eerror "Please create ${site_manifest} before running puppet"
        return 1
    fi

    return 0
}

start() {
    checkconfig || return $?

    local options=""
    [[ -n "${PUPPETMASTER_MANIFEST}" ]]   && options="${options} --manifest=${PUPPETMASTER_MANIFEST}"
    [[ -n "${PUPPETMASTER_LOG}" ]]        && options="${options} --logdest=${PUPPETMASTER_LOG}"
    [[ -n "${PUPPETMASTER_EXTRA_OPTS}" ]] && options="${options} ${PUPPETMASTER_EXTRA_OPTS}"

    ebegin "Starting puppetmaster"
    start-stop-daemon --start --quiet --exec /usr/bin/ruby /usr/bin/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}
}

Version data entries

275 entries across 275 versions & 2 rubygems

Version Path
puppet-5.3.7 ext/gentoo/init.d/puppetmaster
puppet-5.3.7-x86-mingw32 ext/gentoo/init.d/puppetmaster
puppet-5.3.7-x64-mingw32 ext/gentoo/init.d/puppetmaster
puppet-5.3.7-universal-darwin ext/gentoo/init.d/puppetmaster
puppet-4.10.12 ext/gentoo/init.d/puppetmaster
puppet-4.10.12-x86-mingw32 ext/gentoo/init.d/puppetmaster
puppet-4.10.12-x64-mingw32 ext/gentoo/init.d/puppetmaster
puppet-4.10.12-universal-darwin ext/gentoo/init.d/puppetmaster
puppet-4.10.11 ext/gentoo/init.d/puppetmaster
puppet-4.10.11-x86-mingw32 ext/gentoo/init.d/puppetmaster
puppet-4.10.11-x64-mingw32 ext/gentoo/init.d/puppetmaster
puppet-4.10.11-universal-darwin ext/gentoo/init.d/puppetmaster
puppet-5.3.6 ext/gentoo/init.d/puppetmaster
puppet-5.3.6-x86-mingw32 ext/gentoo/init.d/puppetmaster
puppet-5.3.6-x64-mingw32 ext/gentoo/init.d/puppetmaster
puppet-5.3.6-universal-darwin ext/gentoo/init.d/puppetmaster
puppet-5.3.5 ext/gentoo/init.d/puppetmaster
puppet-5.3.5-x86-mingw32 ext/gentoo/init.d/puppetmaster
puppet-5.3.5-x64-mingw32 ext/gentoo/init.d/puppetmaster
puppet-5.3.5-universal-darwin ext/gentoo/init.d/puppetmaster