summaryrefslogtreecommitdiffstats
path: root/debian/icinga2-bin.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:34:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:34:55 +0000
commit58306b0f7e29c41c00ab7bbd99d7686299f1de77 (patch)
treeb737b9d2d0a29c485e78c545d5434f13d923c91e /debian/icinga2-bin.postinst
parentAdding upstream version 2.13.6. (diff)
downloadicinga2-971df9fea81be15358dc7147aacb373cdb49e953.tar.xz
icinga2-971df9fea81be15358dc7147aacb373cdb49e953.zip
Adding debian version 2.13.6-2.debian/2.13.6-2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/icinga2-bin.postinst')
-rw-r--r--debian/icinga2-bin.postinst41
1 files changed, 41 insertions, 0 deletions
diff --git a/debian/icinga2-bin.postinst b/debian/icinga2-bin.postinst
new file mode 100644
index 0000000..52d78ae
--- /dev/null
+++ b/debian/icinga2-bin.postinst
@@ -0,0 +1,41 @@
+#!/bin/sh
+# postinst script for icinga2-bn
+
+set -e
+
+is_fresh_install()
+{
+ if [ -z "$2" ] ; then
+ return 0
+ fi
+ return 1
+}
+
+enable_default_features() {
+ FIX_VERSION="0.0.5+icingasnap201312070000"
+ if is_fresh_install $@ \
+ || dpkg --compare-versions "$2" lt "$FIX_VERSION"; then
+ echo "enabling default icinga2 features"
+ icinga2 feature enable checker notification mainlog
+ fi
+ # handle new default features here in the future
+}
+
+case "$1" in
+ configure)
+ # enable default features
+ enable_default_features $@
+ ;;
+
+ abort-upgrade|abort-remove|abort-deconfigure)
+ ;;
+
+ *)
+ echo "postinst called with unknown argument \`$1'" >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0