This file is indexed.

/usr/lib/x86_64-linux-gnu/lxc/lxc-apparmor-load is in lxc-common 2.0.7-0ubuntu1~16.04.2.

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
#!/bin/sh
# lxc-apparmor-load: Load AppArmor profiles, if supported by the system

set -eu

# don't load profiles if mount mediation is not supported
SYSF=/sys/kernel/security/apparmor/features/mount/mask
if [ -f $SYSF ]; then
	if [ -x /lib/apparmor/profile-load ]; then
		/lib/apparmor/profile-load usr.bin.lxc-start
		/lib/apparmor/profile-load lxc-containers
	elif [ -x /lib/init/apparmor-profile-load ]; then
		/lib/init/apparmor-profile-load usr.bin.lxc-start
		/lib/init/apparmor-profile-load lxc-containers
	fi
fi