This file is indexed.

/etc/init/cryptdisks-udev.conf is in cryptsetup 2:1.4.1-2ubuntu4.

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
# cryptdisks - enable encrypted block devices

description    "enable encrypted block devices"

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

task

script
    [ -r /lib/cryptsetup/cryptdisks.functions ] || { stop; exit 0; }

    . /lib/cryptsetup/cryptdisks.functions

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

    INITSTATE=udev
    crypttab_start_one_disk "$DEVNAME"
end script