From 5e2444babec408e4989466cc64122502d4c3a93c Mon Sep 17 00:00:00 2001 From: Javier Martinez Canillas Date: Wed, 30 Jun 2021 09:20:11 +0200 Subject: [PATCH] Remove triggers needed to upgrade from legacy GRUB The legacy GRUB package (grub2 < 1.99-4) had a %preun scriptlet that did a rm -f /boot/%{name}/*.{mod,img,lst} and caused users who upgraded to grub2 to have an empty /boot/%{name} directory, leading to an unbootable system. To workaround this, a set of %triggerun and %triggerpostun triggers were added that backup and restore the /boot/%{name} directory. But that was an issue in Fedora 16, almost a decade ago. These aren't needed anymore. Signed-off-by: Javier Martinez Canillas --- grub2.spec | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/grub2.spec b/grub2.spec index b47de5b..c7edc7a 100644 --- a/grub2.spec +++ b/grub2.spec @@ -310,31 +310,6 @@ elif [ -f /etc/grub.d/01_users ] && \ fi fi -%triggerun -- grub2 < 1:1.99-4 -# grub2 < 1.99-4 removed a number of essential files in postun. To fix upgrades -# from the affected grub2 packages, we first back up the files in triggerun and -# later restore them in triggerpostun. -# https://bugzilla.redhat.com/show_bug.cgi?id=735259 - -# Back up the files before uninstalling old grub2 -mkdir -p /boot/grub2.tmp && -mv -f /boot/grub2/*.mod \ - /boot/grub2/*.img \ - /boot/grub2/*.lst \ - /boot/grub2/device.map \ - /boot/grub2.tmp/ || : - -%triggerpostun -- grub2 < 1:1.99-4 -# ... and restore the files. -test ! -f /boot/grub2/device.map && -test -d /boot/grub2.tmp && -mv -f /boot/grub2.tmp/*.mod \ - /boot/grub2.tmp/*.img \ - /boot/grub2.tmp/*.lst \ - /boot/grub2.tmp/device.map \ - /boot/grub2/ && -rm -r /boot/grub2.tmp/ || : - %posttrans common set -eu