This file is indexed.

/usr/lib/ubiquity/target-config/45jackd2 is in ubiquity-casper 1.376.

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
#!/bin/sh
set -e

. /usr/share/debconf/confmodule

if db_get jackd/tweak_rt_limits; then
	# Using DEBCONF_DB_REPLACE is a hack to force configdb to be
	# read-only, which debconf-copydb doesn't currently arrange for
	# itself.
	DEBCONF_DB_REPLACE=configdb debconf-copydb configdb targetdb \
		-p jackd/tweak_rt_limits \
		--config=Name:targetdb --config=Driver:File \
		--config=Mode:0644 \
		--config=Filename:/target/var/cache/debconf/config.dat
	casper-reconfigure /target jackd2
fi

exit 0