From 2b20bf7ad9cc8b8a3bbc6207a7f0098a177dd41f Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Thu, 20 Feb 2020 10:36:39 -0800 Subject: [PATCH] Add eject back into the boot.iso The eject utility moved into util-linux and the package was dropped, but since the runtime-cleanup template is using `removefrom util-linux --allbut` it was never added to the boot.iso after the move. This adds it to the list of binaries to keep from util-linux. Resolves: rhbz#1805405 --- 80-rhel/runtime-cleanup.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/80-rhel/runtime-cleanup.tmpl b/80-rhel/runtime-cleanup.tmpl index a4a2cb5..692370b 100644 --- a/80-rhel/runtime-cleanup.tmpl +++ b/80-rhel/runtime-cleanup.tmpl @@ -311,7 +311,7 @@ removefrom sysvinit-tools /usr/bin/* removefrom tar /usr/share/locale/* removefrom usbutils /usr/bin/* removefrom util-linux --allbut \ - /usr/bin/{dmesg,getopt,kill,login,lsblk,more,mount,umount,mountpoint,findmnt} \ + /usr/bin/{dmesg,eject,getopt,kill,login,lsblk,more,mount,umount,mountpoint,findmnt} \ /etc/mtab /etc/pam.d/login /etc/pam.d/remote \ /usr/sbin/{agetty,blkid,blockdev,clock,fdisk,fsck,fstrim,hwclock,losetup} \ /usr/sbin/{mkswap,swaplabel,nologin,sfdisk,swapoff,swapon,wipefs,partx,fsfreeze} \