From 339243f3eb5086729cb1758f85fddf52cf088ea0 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 24 Aug 2012 12:27:03 +0200 Subject: [PATCH] Recreating /etc/live/boot in postinst. --- debian/live-boot.postinst | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 debian/live-boot.postinst 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 -- 2.1.4