This file is indexed.

/usr/lib/cruft/explain/APPARMOR 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
#!/bin/dash

test -d /etc/apparmor.d || exit 0

test -d /etc/apparmor.d/local && echo /etc/apparmor.d/local

find /etc/apparmor.d/ -maxdepth 1 -type f -name 'usr.*' |
while read fullname
do
        file=$(basename $fullname)
	[ -e /etc/apparmor.d/cache/$file ] && echo /etc/apparmor.d/cache/$file
	[ -e /etc/apparmor.d/local/$file ] && echo /etc/apparmor.d/local/$file
done