mirror of https://github.com/Icinga/icinga2.git
25 lines
532 B
Bash
25 lines
532 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ -f /usr/share/debconf/confmodule ]; then
|
|
. /usr/share/debconf/confmodule
|
|
fi
|
|
|
|
if [ -f /usr/share/dbconfig-common/dpkg/postrm ]; then
|
|
. /usr/share/dbconfig-common/dpkg/postrm
|
|
dbc_go icinga2-ido-pgsql $@
|
|
fi
|
|
|
|
if [ "$1" = "purge" ]; then
|
|
rm -f /etc/icinga2/features-available/ido-pgsql.conf
|
|
rm -f /etc/icinga2/features-enabled/ido-pgsql.conf
|
|
if which ucf >/dev/null; then
|
|
ucf --purge /etc/icinga2/features-available/ido-pgsql.conf
|
|
fi
|
|
db_purge
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|