This file is indexed.

/usr/share/doc/aide-common/examples/31_example_exclude-homes is in aide-common 0.16~a2.git20130520-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
#!/bin/bash

# this excludes the home directories of system accounts with
# uid >= 1000 from the AIDE check.

getent passwd | awk -v FS=":" '{ if( $3 >= 1000) { print "!" $6 }}'