X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=debian%2Flive-boot.postinst;fp=debian%2Flive-boot.postinst;h=0f0f4ad1df0497f9295ef7aad7e7a8153ae218b4;hb=339243f3eb5086729cb1758f85fddf52cf088ea0;hp=0000000000000000000000000000000000000000;hpb=c4ce70393af278beedaeab79808e0059d91f62b6;p=live-boot-grml.git diff --git a/debian/live-boot.postinst b/debian/live-boot.postinst new file mode 100644 index 0000000..0f0f4ad --- /dev/null +++ b/debian/live-boot.postinst @@ -0,0 +1,22 @@ +#!/bin/sh + +set -e + +case "${1}" in + configure) + mkdir -p /etc/live/boot + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`${1}'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0