summaryrefslogtreecommitdiffstats
path: root/debian/icinga2-ido-mysql.postinst
blob: dd16a193a61574aaefc377a4f076cc5072d3205a (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/sh

set -e

. /usr/share/debconf/confmodule
. /usr/share/dbconfig-common/dpkg/postinst

#dbc_debug='1'
dbc_generate_include='template:/etc/icinga2/features-available/ido-mysql.conf'
dbc_generate_include_owner='nagios:nagios'
dbc_generate_include_args='--ucf -o template_infile=/usr/share/icinga2/tmpl/ido-mysql.conf-sample'
dbc_go icinga2-ido-mysql $@


if [ "$1" = configure ]; then

    # get values from debconf db
    db_get icinga2-ido-mysql/enable

    if [ "$RET" = "false" ]; then
        if [ -L /etc/icinga2/features-enabled/ido-mysql.conf ]
        then
            echo "disable ido mysql feature"
            icinga2 feature disable ido-mysql
            echo "reloading icinga2"
            [ -x $(which invoke-rc.d) ] && invoke-rc.d icinga2 reload
        fi
    else
        if [ ! -L /etc/icinga2/features-enabled/ido-mysql.conf ]
        then
            echo "enable ido mysql feature"
            icinga2 feature enable ido-mysql
            echo "reloading icinga2"
            [ -x $(which invoke-rc.d) ] && invoke-rc.d icinga2 reload

        fi
    fi
fi

#DEBHELPER#
db_stop