Allow redhat vars file to cover different RHEL derivatives

Some paths are hardcoded to 'centos', when these are actually 'rocky'
on Rocky Linux installations. Use an ansible fact to obtain the correct
path.

Depends-On: https://review.opendev.org/c/openstack/openstack-ansible/+/846224
Change-Id: Id6694d61d874a8542971075cb2377fb7f38bca96
This commit is contained in:
Jonathan Rosser 2022-05-31 10:34:45 +01:00 committed by Dmitriy Rabotyagov
parent 3c71d45c0d
commit d88b2f50c0
1 changed files with 3 additions and 3 deletions

View File

@ -50,9 +50,9 @@ ironic_library_modules_paths:
ironic_uefi_modules:
- name: "bootx64.efi"
path: "/boot/efi/EFI/centos/shimx64.efi"
path: "/boot/efi/EFI/{{ ansible_facts['distribution'] | lower }}/shimx64.efi"
- name: "grubx64.efi"
path: "/boot/efi/EFI/centos/grubx64.efi"
path: "/boot/efi/EFI/{{ ansible_facts['distribution'] | lower }}/grubx64.efi"
ironic_tftpd_service_name: tftp
ironic_tftpd_root: /var/lib/tftpboot
@ -84,4 +84,4 @@ ironic_inspector_library_modules_paths:
- "/usr/lib/syslinux/modules/efi64/ldlinux.e64"
ironic_nginx_conf_path: "conf.d"
ironic_grub_dir: "/tftpboot/EFI/centos"
ironic_grub_dir: "/tftpboot/EFI/{{ ansible_facts['distribution'] | lower }}"