This file is indexed.

/etc/init/live-config.conf is in live-config-upstart 3.0~a22-1ubuntu1.

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
## Debian Live - System Configuration Scripts
##
## live-config contains the scripts that configure a Debian Live system during
## the boot process (late userspace).
##
## This is the upstart job for live-config.


description	"live-config"
author		"Debian Live Project <debian-live@lists.debian.org>"

start on filesystem
stop on runlevel [016]

console output

script
	if [ -e /lib/live/config.sh ]
	then
		/lib/live/config.sh
	fi
end script