This file is indexed.

config is in icinga2-ido-mysql 2.8.1-0ubuntu2.

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
#!/bin/sh 
set -e

. /usr/share/debconf/confmodule

if [ -f /usr/share/dbconfig-common/dpkg/config.mysql ]; then
    . /usr/share/dbconfig-common/dpkg/config.mysql
    dbc_dbname=icinga2
    dbc_dbuser=icinga2

    dbc_go icinga2-ido-mysql $@
fi

# check if the feature is enabled
if test -L /etc/icinga2/features-enabled/ido-mysql.conf; then
    db_set icinga2-ido-mysql/enable "true"
else 
    db_set icinga2-ido-mysql/enable "false"
fi
db_input high icinga2-ido-mysql/enable || true
db_go || true