From 808331488dc16afdf9bd4c2c3103a4a8fc9a6209 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Piliszek?= Date: Fri, 18 Jun 2021 12:06:02 +0000 Subject: [PATCH] Revert edk2 workaround It is not needed anymore. Change-Id: I706a33b0a7c737a23b9a7270af1e53e5de83c66f --- lib/nova_plugins/functions-libvirt | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/lib/nova_plugins/functions-libvirt b/lib/nova_plugins/functions-libvirt index 58adde7cd4..d3827c30dd 100644 --- a/lib/nova_plugins/functions-libvirt +++ b/lib/nova_plugins/functions-libvirt @@ -81,17 +81,7 @@ function install_libvirt { install_package qemu-kvm install_package libvirt libvirt-devel - if is_arch "x86_64"; then - # NOTE(yoctozepto): recent edk2-ovmf on CentOS Stream 8 x86_64 started failing with - # "libvirt.libvirtError: internal error: unknown feature amd-sev-es", - # so reinstall a known working version until the relevant bugs get fixed: - # * https://bugzilla.redhat.com/show_bug.cgi?id=1961558 - # * https://bugzilla.redhat.com/show_bug.cgi?id=1961562 - # TODO(yoctozepto): Remove this code when the time is right. - if [ "$os_VENDOR" = "CentOSStream" ]; then - install_package edk2-ovmf-20200602gitca407c7246bf-4.el8 - fi - elif is_arch "aarch64"; then + if is_arch "aarch64"; then install_package edk2.git-aarch64 fi