This file is indexed.

/usr/share/aide/config/aide/aide.conf.d/10_aide_distribution is in aide-common 0.16~a2.git20130520-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
#!/bin/sh

if [ -e "/etc/debian_version" ]; then
  echo "@@ifndef DEBIANVERSION"
  echo "@@define DEBIANVERSION Debian/$(head -n 1 /etc/debian_version)"
  echo "@@endif"
fi
if [ -x "/usr/bin/lsb_release" ]; then
  for parm in id description release codename; do
    PARM="$LSB_$(echo $parm | tr 'a-z' 'A-Z')"
    echo "@@ifndef $PARM"
    echo "@@define $PARM $(/usr/bin/lsb_release --short --$parm | sed 's/[[:space:]]\+/_/g')"
    echo "@@endif"
  done
fi