mirror of https://github.com/Icinga/icinga2.git
44 lines
1.1 KiB
Bash
44 lines
1.1 KiB
Bash
#!/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-pgsql.conf'
|
|
dbc_generate_include_owner='nagios:nagios'
|
|
dbc_generate_include_args='--ucf -o template_infile=/usr/share/icinga2/tmpl/ido-pgsql.conf-sample'
|
|
dbc_go icinga2-ido-pgsql $@
|
|
|
|
|
|
if [ "$1" = configure ]; then
|
|
|
|
# get values from debconf db
|
|
db_get icinga2-ido-pgsql/enable
|
|
|
|
if [ "$RET" = "false" ]; then
|
|
if [ -L /etc/icinga2/features-enabled/ido-pgsql.conf ]
|
|
then
|
|
echo "disable ido pgsql feature"
|
|
icinga2-disable-feature ido-pgsql
|
|
echo "reloading icinga2"
|
|
[ -x $(which invoke-rc.d) ] && invoke-rc.d icinga2 reload
|
|
fi
|
|
else
|
|
if [ ! -L /etc/icinga2/features-enabled/ido-pgsql.conf ]
|
|
then
|
|
echo "enable ido pgsql feature"
|
|
icinga2-enable-feature ido-pgsql
|
|
echo "reloading icinga2"
|
|
[ -x $(which invoke-rc.d) ] && invoke-rc.d icinga2 reload
|
|
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
db_stop
|
|
|
|
|