add missing boot partition and grub2-pc-modules

This commit is contained in:
Louis Abel 2022-08-29 02:05:51 -07:00
parent 0a8fc784b6
commit 606474ac97
Signed by: label
GPG Key ID: B37E62D143879B36
1 changed files with 2 additions and 0 deletions

View File

@ -23,6 +23,7 @@ clearpart --all --initlabel --disklabel=gpt
part prepboot --size=4 --fstype=prepboot
part biosboot --size=1 --fstype=biosboot
part /boot/efi --size=100 --fstype=efi
part /boot --size=1000 --fstype=xfs --label=boot
part / --size=8000 --fstype="xfs" --mkfsoptions "-m bigtime=0,inobtcount=0"
shutdown
@ -89,6 +90,7 @@ passwd -l root
# Attempting to force legacy BIOS boot if we boot from UEFI
if [ "$(arch)" = "x86_64" ]; then
dnf install grub2-pc-modules -y
grub2-install --target=i386-pc /dev/vda
fi