This file is indexed.

/etc/init.d/puppetqd is in puppetmaster-common 2.7.23-1~deb7u3.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#! /bin/sh
### BEGIN INIT INFO
# Provides: puppetqd
# Required-Start:    $network $named $remote_fs $syslog
# Required-Stop:     $network $named $remote_fs $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: puppet queue
# Description:       The puppet queue daemon interacts with a STOMP server on
#                    behalf of the puppet master to increase database write
#                    performance.  Useful if you need to scale to thousands of
#                    nodes.
### END INIT INFO                 

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/bin/puppet
DAEMON_OPTS=""
NAME="queue"
DESC="puppet queue"
PIDFILE="/var/run/puppet/${NAME}.pid"

test -x $DAEMON || exit 0

[ -r /etc/default/puppetqd ] && . /etc/default/puppetqd

. /lib/lsb/init-functions

if [ ! -d /var/run/puppet ]; then
	mkdir -p /var/run/puppet
fi

chown puppet:puppet /var/run/puppet

is_true() {
    if [ "x$1" = "xtrue" -o "x$1" = "xyes" -o "x$1" = "x0" ] ; then
        return 0
    else
        return 1
    fi
}

start_puppet_queue() {
    if is_true "$PUPPETQD" ; then
	start-stop-daemon --start --quiet --pidfile=${PIDFILE} \
	    --startas $DAEMON -- $NAME $DAEMON_OPTS $PUPPETQD_OPTS
    fi
}

stop_puppet_queue() {
    start-stop-daemon --stop --quiet --oknodo --pidfile ${PIDFILE}
    rm -f ${PIDFILE}
}

status_puppet_queue() {
    if is_true "$PUPPETQD" ; then
        status_of_proc -p "${PIDFILE}" "${DAEMON}" "${NAME}"
    else
	echo ""
	echo "puppetqd not configured to start"
    fi
}


case "$1" in
    start)
	log_begin_msg "Starting $DESC"
	start_puppet_queue
	log_end_msg $?
	;;
    stop)
	log_begin_msg "Stopping $DESC"
	stop_puppet_queue
	log_end_msg $?
	;;
    status)
	status_puppet_queue
        ;;
    reload|restart|force-reload)
	log_begin_msg "Restarting $DESC"
	stop_puppet_queue
	sleep 1
	start_puppet_queue
	log_end_msg $?
	;;
    *)
	echo "Usage: $0 {start|stop|status|restart|force-reload}" >&2
	exit 1
	;;
esac