This file is indexed.

config is in aide-common 0.16~a2.git20130520-2.

This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.

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
24
25
26
27
28
#!/bin/sh

set -e

# We need debconf.
. /usr/share/debconf/confmodule

if [ -n "$AIDEDEBUG" ]; then
  echo "now debugging $0 $@"
  set -x
fi

db_input medium aide/aideinit || true
db_go
db_get aide/aideinit
if [ "$RET" = "true" ]; then
    if [ -f "/var/lib/aide/aide.db.new" ]; then
        db_input medium aideinit/overwritenew || true
        db_go
        db_get aideinit/overwritenew
    else
        RET="true"
    fi
    if [ "$RET" = "true" ]; then
        db_input high aideinit/copynew || true
        db_go
    fi
fi