summaryrefslogtreecommitdiffstats
path: root/debian/icingaweb2-module-businessprocess.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-14 13:15:41 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-14 13:15:41 +0000
commit38a2eb4ed098f741e10e3e6e0d940d500942461d (patch)
treea108b5e50a22c0213503ef92b940fddd7eb2d5fd /debian/icingaweb2-module-businessprocess.postinst
parentAdding upstream version 2.5.0. (diff)
downloadicingaweb2-module-businessprocess-38a2eb4ed098f741e10e3e6e0d940d500942461d.tar.xz
icingaweb2-module-businessprocess-38a2eb4ed098f741e10e3e6e0d940d500942461d.zip
Adding debian version 2.5.0-1.debian/2.5.0-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/icingaweb2-module-businessprocess.postinst')
-rwxr-xr-xdebian/icingaweb2-module-businessprocess.postinst48
1 files changed, 48 insertions, 0 deletions
diff --git a/debian/icingaweb2-module-businessprocess.postinst b/debian/icingaweb2-module-businessprocess.postinst
new file mode 100755
index 0000000..e46a3a2
--- /dev/null
+++ b/debian/icingaweb2-module-businessprocess.postinst
@@ -0,0 +1,48 @@
+#!/bin/sh
+
+set -e
+
+MODULE="businessprocess"
+
+case "${1}" in
+ configure)
+ . /usr/share/debconf/confmodule
+
+ db_get icingaweb2-module-${MODULE}/enable
+ MODULE_ENABLE="${RET:-true}"
+
+ db_stop
+
+ if ! getent group icingaweb2 > /dev/null
+ then
+ groupadd --system icingaweb2 > /dev/null
+ fi
+
+ if [ "${MODULE_ENABLE}" = "true" ]
+ then
+ if [ ! -e "/etc/icingaweb2/enabledModules" ]
+ then
+ mkdir -p "/etc/icingaweb2/enabledModules"
+ chown root:icingaweb2 "/etc/icingaweb2/enabledModules" > /dev/null 2>&1 || true
+ fi
+
+ ln -sf "/usr/share/icingaweb2/modules/${MODULE}" "/etc/icingaweb2/enabledModules/${MODULE}"
+ chown root:icingaweb2 "/etc/icingaweb2/enabledModules/${MODULE}" > /dev/null 2>&1 || true
+ else
+ rm -f "/etc/icingaweb2/enabledModules/${MODULE}"
+ fi
+ ;;
+
+ abort-upgrade|abort-remove|abort-deconfigure)
+
+ ;;
+
+ *)
+ echo "postinst called with unknown argument: \`${1}'." >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0