This file is indexed.

/usr/lib/cruft/explain/zfs-dkms is in cruft-common 0.9.34.

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
#!/bin/sh -e
versions=$(/usr/sbin/dkms status -m zfs | cut -d\, -f 3 | tr -d ' ')
for ver in $versions
do
    echo /lib/modules/${ver}/updates
    echo /lib/modules/${ver}/updates/dkms
    echo /lib/modules/${ver}/updates/dkms/zfs.ko
    echo /lib/modules/${ver}/updates/dkms/zcommon.ko
    echo /lib/modules/${ver}/updates/dkms/znvpair.ko
    echo /lib/modules/${ver}/updates/dkms/zpios.ko
    echo /lib/modules/${ver}/updates/dkms/zunicode.ko
done