This file is indexed.

/usr/lib/cruft/explain/spl-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
#!/bin/sh -e
versions=$(/usr/sbin/dkms status -m spl | 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/spl.ko
    echo /lib/modules/${ver}/updates/dkms/splat.ko
done