This file is indexed.

/lib/partman/init.d/03kernelmodules_btrfs is in ubiquity 2.18.7.

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

mkdir -p /var/lib/partman

cat /proc/modules |
while read module_name x; do
	if [ "$module_name" = btrfs ]; then
		>/var/lib/partman/btrfs
		exit 0
	fi
done

if modprobe btrfs >/dev/null 2>/dev/null; then
	>/var/lib/partman/btrfs
	exit 0
fi

if grep -q btrfs /proc/filesystems; then
	>/var/lib/partman/btrfs
fi