This file is indexed.

/etc/init/cryptdisks-udev.conf is in cryptsetup 2:1.6.1-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
23
24
25
# cryptdisks - enable encrypted block devices

description    "enable encrypted block devices"

start on block-device-added ID_FS_USAGE=crypto
instance $DEVNAME

task

script
	if [ -r /lib/cryptsetup/cryptdisks.functions ]; then
		. /lib/cryptsetup/cryptdisks.functions
	else
		exit 0
	fi

	case "$CRYPTDISKS_ENABLE" in
	[Nn]*)
		exit 1
		;;
	esac

	INITSTATE=udev
	crypttab_start_one_disk "$DEVNAME"
end script