This file is indexed.

/etc/init/munin-node.conf is in munin-node 1.4.6-3ubuntu3.

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
# munin-node

description "munin-node"
author "Chuck Short <zulcss@ubuntu.com>"

start on (filesystem and net-device-up IFACE=lo)
stop on runlevel [!2345]

env DAEMON=/usr/sbin/munin-node

expect fork
respawn 

pre-start script
	mkdir -p /var/run/munin
	chown munin:munin /var/run/munin
	chmod 0755 /var/run/munin
end script

script
	[ -r /etc/default/munin-node ] && . /etc/default/munin-node

	exec $DAEMON $DAEMON_ARGS
end script