2020-05-06 14:03:53 -04:00
|
|
|
#!/bin/sh
|
2021-02-08 09:24:46 -05:00
|
|
|
sed -i 's/centos/CentOS/; s/rhel/Red Hat Enterprise Linux/; s/oraclelinux/Oracle Linux/; s/alma/AlmaLinux/' $2/profile.yaml
|
2020-05-06 14:03:53 -04:00
|
|
|
ln -s $1/images/pxeboot/vmlinuz $2/boot/kernel && \
|
2020-05-06 15:31:29 -04:00
|
|
|
ln -s $1/images/pxeboot/initrd.img $2/boot/initramfs/distribution
|
2023-01-27 08:00:38 -05:00
|
|
|
mkdir -p $2/boot/efi/boot
|
|
|
|
if [ -e $1/EFI/BOOT/BOOTAA64.EFI ]; then
|
|
|
|
ln -s $1/EFI/BOOT/BOOTAA64.EFI $1/EFI/BOOT/grubaa64.efi $2/boot/efi/boot/
|
|
|
|
else
|
|
|
|
ln -s $1/EFI/BOOT/BOOTX64.EFI $1/EFI/BOOT/grubx64.efi $2/boot/efi/boot/
|
|
|
|
fi
|
2020-05-06 14:03:53 -04:00
|
|
|
|