Fix ironic-pxe EFI path for rocky

Change-Id: I6c82ef5b148b3ebdc8241871117dbe6cd68ed070
This commit is contained in:
Michal Nasiadka 2022-10-03 12:30:27 +02:00
parent 28424514f3
commit 1d924eff03
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ function prepare_pxe_grub {
shim_src_file="/usr/lib/shim/shim*64.efi.signed"
grub_src_file="/usr/lib/grub/*-efi-signed/grubnet*64.efi.signed"
elif [[ "${KOLLA_BASE_DISTRO}" =~ centos|rocky ]]; then
shim_src_file="/boot/efi/EFI/centos/shim*64.efi"
grub_src_file="/boot/efi/EFI/centos/grub*64.efi"
shim_src_file="/boot/efi/EFI/${KOLLA_BASE_DISTRO}/shim*64.efi"
grub_src_file="/boot/efi/EFI/${KOLLA_BASE_DISTRO}/grub*64.efi"
fi
if [[ "${KOLLA_BASE_ARCH}" == "x86_64" ]]; then