This file is indexed.

/etc/init/glance-glare.conf is in glance-glare 2:13.0.0-4.

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

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
description "OpenStack Glance Glare API"
author "Thomas Goirand <zigo@debian.org>"

start on runlevel [2345]
stop on runlevel [!2345]

chdir /var/run

respawn
respawn limit 20 5
limit nofile 65535 65535

pre-start script
	for i in lock run lib ; do
		mkdir -p /var/$i/glance
		chown glance:glance /var/$i/glance
	done
	for i in log ; do
		mkdir -p /var/$i/glance
		chown glance:adm /var/$i/glance
	done
end script

script
	[ -x "/usr/bin/glance-glare" ] || exit 0
	DAEMON_ARGS=""
	CONFIG_FILE="/etc/glance/glance-glare.conf"
	USE_SYSLOG=""
	USE_LOGFILE=""
	NO_OPENSTACK_CONFIG_FILE_DAEMON_ARG=""
	[ -r /etc/default/openstack ] && . /etc/default/openstack
	[ -r /etc/default/$UPSTART_JOB ] && . /etc/default/$UPSTART_JOB
	[ "x$USE_SYSLOG" = "xyes" ] && DAEMON_ARGS="$DAEMON_ARGS --use-syslog"
	[ "x$USE_LOGFILE" != "xno" ] && DAEMON_ARGS="$DAEMON_ARGS --log-file=/var/log/glance/glance-glare.log"
	[ -z "$NO_OPENSTACK_CONFIG_FILE_DAEMON_ARG" ] && DAEMON_ARGS="$DAEMON_ARGS --config-file=$CONFIG_FILE"

	exec start-stop-daemon --start --chdir /var/lib/glance \
		--chuid glance:glance --make-pidfile --pidfile /var/run/glance/glance-glare.pid \
		--exec /usr/bin/glance-glare -- ${DAEMON_ARGS}
end script