dataset/seed/applicationservice/2022.03.08/base-fedora/packer/image/scripts/90-initrd

11 lines
203 B
Text
Raw Normal View History

2022-03-08 19:42:28 +01:00
#!/bin/bash
set -xe
KERNELVERSION=$(ls /lib/modules)
if [ -f "/boot/efi/$KERNELVERSION/initrd.cdrom" ]; then
mv "/boot/efi/$KERNELVERSION/initrd.cdrom" "/boot/efi/$KERNELVERSION/initrd"
fi
exit 0