From 210d754991d9482b51e015ac8fa6606c18834a33 Mon Sep 17 00:00:00 2001 From: Michal Nasiadka Date: Fri, 2 Sep 2022 10:49:05 +0200 Subject: [PATCH] Add support for EL9 --- vars/RedHat.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vars/RedHat.yml b/vars/RedHat.yml index 0335240..a389c3d 100644 --- a/vars/RedHat.yml +++ b/vars/RedHat.yml @@ -23,6 +23,8 @@ libvirt_host_packages_efi_by_version: - qemu-kvm-ev # Need smm support for secure boot 8: - edk2-ovmf + 9: + - edk2-ovmf libvirt_host_packages_efi: >- {{ libvirt_host_packages_efi_by_version[ansible_facts.distribution_major_version | int] }} @@ -53,6 +55,7 @@ libvirt_host_custom_yum_repos_efi_by_version: baseurl: http://mirror.centos.org/$contentdir/$releasever/virt/$basearch/kvm-common/ gpgcheck: yes 8: [] + 9: [] libvirt_host_custom_yum_repos: >- {{ libvirt_host_custom_yum_repos_efi_by_version[ansible_facts.distribution_major_version | int] }}