From 935d9370aca6d03dce9f15da6c468e4c87d175de Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Wed, 2 Jan 2013 11:53:57 +0000 Subject: [PATCH] Remove /boot/grub/unicode.pf2 on purge of grub-efi-{amd64,i386} (closes: #697183). --- debian/changelog | 7 +++++++ debian/postrm.in | 4 ++++ 2 files changed, 11 insertions(+) diff --git a/debian/changelog b/debian/changelog index b157c5959..d76c9ad58 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +grub2 (1.99-26) UNRELEASED; urgency=low + + * Remove /boot/grub/unicode.pf2 on purge of grub-efi-{amd64,i386} (closes: + #697183). + + -- Colin Watson Wed, 02 Jan 2013 11:53:42 +0000 + grub2 (1.99-25) unstable; urgency=low * Ensure /boot/grub exists before copying files to it for EFI installs diff --git a/debian/postrm.in b/debian/postrm.in index 83b89c022..d9237f017 100644 --- a/debian/postrm.in +++ b/debian/postrm.in @@ -28,6 +28,10 @@ case "$1" in rmdir --ignore-fail-on-non-empty /boot/grub || true fi ;; + + grub-efi-ia32|grub-efi-amd64) + rm -f /boot/grub/unicode.pf2 + ;; esac ;;