Remove /boot/grub/unicode.pf2 on purge of grub-efi-{amd64,i386} (closes:

#697183).
This commit is contained in:
Colin Watson 2013-01-02 11:53:57 +00:00
parent 03a0d72740
commit 935d9370ac
2 changed files with 11 additions and 0 deletions

7
debian/changelog vendored
View File

@ -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 <cjwatson@debian.org> 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

4
debian/postrm.in vendored
View File

@ -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
;;