2020-05-06 18:03:53 +00:00
|
|
|
#!/bin/sh
|
2021-02-08 14:24:46 +00: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 18:03:53 +00:00
|
|
|
ln -s $1/images/pxeboot/vmlinuz $2/boot/kernel && \
|
2020-05-06 19:31:29 +00:00
|
|
|
ln -s $1/images/pxeboot/initrd.img $2/boot/initramfs/distribution
|
2023-01-27 13:00:38 +00: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 18:03:53 +00:00
|
|
|
|