This file is indexed.

/usr/share/aide/config/aide/aide.conf.d/31_aide_trac 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
#!/bin/bash

REPOSITORIES=""

if [ -r "$UPAC_settingsd/31_aide_trac_settings" ]; then
  # pull in configuration
  . "$UPAC_settingsd/31_aide_trac_settings"
fi

for tracpath in $REPOSITORIES; do
    [ -d $tracpath ] || exit 1
    echo ${tracpath//\./\\\.}"db/trac\.db$ VarFile"
    echo ${tracpath//\./\\\.}"db$ VarDir"
done