From: Daniel Baumann Date: Fri, 24 Aug 2012 10:27:14 +0000 (+0200) Subject: Removing /etc/live/boot if empty on purge in postrm. X-Git-Tag: debian/3.0_b2-1~2 X-Git-Url: http://git.grml.org/?a=commitdiff_plain;ds=sidebyside;h=b75baa7f4fa4476cbf0a3273a140a887c3ac1e6b;p=live-boot-grml.git Removing /etc/live/boot if empty on purge in postrm. --- diff --git a/debian/live-boot.postrm b/debian/live-boot.postrm new file mode 100644 index 0000000..1a7fc90 --- /dev/null +++ b/debian/live-boot.postrm @@ -0,0 +1,23 @@ +#!/bin/sh + +set -e + +case "${1}" in + purge) + rmdir --ignore-fail-on-non-empty /etc/live/boot > /dev/null 2>&1 || true + rmdir --ignore-fail-on-non-empty /etc/live > /dev/null 2>&1 || true + ;; + + remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + + ;; + + *) + echo "postrm called with unknown argument \`${1}'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0