This file is indexed.

/usr/share/aide/config/aide/aide.conf.d/31_aide_munin-nodes 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
16
17
18
19
20
21
22
23
#!/bin/sh
#
# generate aide exclude patterns for all nodes listed in $MUNINCONF

MUNINCONF=/etc/munin/munin.conf

[ -e $MUNINCONF ] || exit 0

HOSTS=$(grep '^\[[[:alnum:]:.]\+\]' $MUNINCONF | tr -d '[]')

escape_dots()
{
    echo $1 | sed 's/\./\\\./g'
}

for HOST in $HOSTS; do
	DOMAIN=$(escape_dots ${HOST#*.})
	DHOST=$(escape_dots $HOST)

	echo "/var/cache/munin/www/$DOMAIN/(index\.html|$DHOST/[-_[:alnum:]]+\.(png|html))$ VarFile"
	echo "/var/lib/munin/$DOMAIN/$DHOST-.*\.rrd$ VarFile"
	echo "/@@{RUN}/munin/munin-(update|datafile|$DOMAIN-$DHOST|limits)\.lock$ VarFile"
done