summaryrefslogtreecommitdiffstats
path: root/debian/open-infrastructure-system-config.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2019-02-02 10:12:36 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2019-02-02 10:38:49 +0000
commit9bd164541265dc60b94627467b2953ae36e6b944 (patch)
treeefb432955dab2e69fb1a9601eeb0bd3c03d1a2ab /debian/open-infrastructure-system-config.postinst
parentAdding upstream version 20190202. (diff)
downloadopen-infrastructure-system-tools-debian/20190202-1.tar.xz
open-infrastructure-system-tools-debian/20190202-1.zip
Adding debian version 20190202-1.debian/20190202-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/open-infrastructure-system-config.postinst')
-rwxr-xr-xdebian/open-infrastructure-system-config.postinst22
1 files changed, 22 insertions, 0 deletions
diff --git a/debian/open-infrastructure-system-config.postinst b/debian/open-infrastructure-system-config.postinst
new file mode 100755
index 0000000..615fb48
--- /dev/null
+++ b/debian/open-infrastructure-system-config.postinst
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+set -e
+
+case "${1}" in
+ configure)
+ mkdir -p /etc/live/config.conf.d
+ ;;
+
+ abort-upgrade|abort-remove|abort-deconfigure)
+
+ ;;
+
+ *)
+ echo "postinst called with unknown argument \`${1}'" >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0