From 3d29d7b746099f753e818500bd9c54f3562393f9 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 26 Feb 2020 12:48:17 -0800 Subject: [PATCH] Add efivar update for F32 as workaround to fix UEFI update tests This is pending stable, but looks like the update push won't happen for a few hours, so I'm adding it as a workaround so we can re-run the tests and get them to pass. Signed-off-by: Adam Williamson --- lib/utils.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/utils.pm b/lib/utils.pm index 419b8493..7b18b6e2 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -515,7 +515,9 @@ sub _repo_setup_updates { my %workarounds = ( "30" => [], "31" => [], - "32" => ["FEDORA-2020-755d29d4b0"] + # fix for lmod breaking console output tests, fix for UEFI + # bootloader installs + "32" => ["FEDORA-2020-755d29d4b0", "FEDORA-2020-8ef75170b3"] ); # then we'll download each update for our release: my $advisories = $workarounds{$version};