This file is indexed.

/usr/share/aide/config/aide/aide.conf.d/31_aide_svn-server 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/bash

REPOSITORIES=""

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

for svnpath in $REPOSITORIES; do
    [ -d $svnpath ] || exit 1
    echo ${svnpath//\./\\\.}"db/(txn-)?current$ VarFile"
    echo ${svnpath//\./\\\.}"db/rev(prop)?s/0/[0-9]+$ Full+ANF"
    echo ${svnpath//\./\\\.}"(db(/(txn-protorevs|transactions|rev(prop)?s/0))?|dav/activities\.d)$ VarDir"
done