From 1af3bd6e345f435644c2a81c020519f59ddd3601 Mon Sep 17 00:00:00 2001 From: Jakub Rusz Date: Fri, 9 Aug 2024 12:44:42 +0200 Subject: [PATCH] tests/libvirt: disable secure boot for el-10 Related bug: CNV-41858 --- tools/libvirt_test.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/libvirt_test.sh b/tools/libvirt_test.sh index ab12eaa08..aa9e78e33 100755 --- a/tools/libvirt_test.sh +++ b/tools/libvirt_test.sh @@ -301,14 +301,15 @@ else OS_VARIANT="centos-stream9" ;; # TODO: Update the variants once available + # Disable secure boot for RHEL-10 due to bug CNV-41858 "rhel-10"*) MIN_RAM="1536" - NVRAM_TEMPLATE="" + NVRAM_TEMPLATE="firmware.feature0.name=secure-boot,firmware.feature0.enabled=no" OS_VARIANT="rhel9-unknown" ;; "centos-10") MIN_RAM="1536" - # Disable secure boot for CS9 due to bug bz#2108646 + # Disable secure boot for CS10 due to bug CNV-41858 NVRAM_TEMPLATE="firmware.feature0.name=secure-boot,firmware.feature0.enabled=no" OS_VARIANT="centos-stream9" ;;