This file is indexed.

/usr/lib/cruft/explain/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
13
14
15
16
17
18
19
20
#!/bin/sh -e

. /usr/lib/cruft/common.sh
cruft_debug

for package in $(/usr/sbin/dkms status | cut -f1 -d\, | sort -u)
do
	if [ -d "/var/lib/dkms/$package" ]
	then
		cruft_find "/var/lib/dkms/$package"
	fi
done

for version in $(/usr/sbin/dkms status | cut -d\, -f 3 | tr -d ' ' | sort -u)
do
	if [ -e "/boot/initrd.img-${version}.old-dkms" ]
	then
		echo "/boot/initrd.img-${version}.old-dkms"
	fi
done