summaryrefslogtreecommitdiffstats
path: root/debian/open-infrastructure-system-config.postinst
diff options
context:
space:
mode:
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