From 6b4b4525214888f00bd0707ecf919ed99e84af64 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Mon, 1 Mar 2021 17:03:50 -0800 Subject: [PATCH] Drop 32 and 33 workarounds, add 34 FreeIPA fix as workaround Add FEDORA-2021-263244c071 as a workaround to fix FreeIPA tests on F34. Drop current 32 and 33 workarounds as they're all stable. Signed-off-by: Adam Williamson --- lib/utils.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/utils.pm b/lib/utils.pm index bbfafa52..f8c5cba4 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -443,9 +443,9 @@ sub setup_workaround_repo { assert_script_run "mkdir -p /opt/workarounds_repo"; assert_script_run "pushd /opt/workarounds_repo"; my %workarounds = ( - "31" => [], - "32" => ["FEDORA-2021-28c15ce0f9"], - "33" => ["FEDORA-2021-ad495a044c", "FEDORA-2021-5258e9cb11"] + "32" => [], + "33" => [], + "34" => ["FEDORA-2021-263244c071"] ); # then we'll download each update for our release: my $advortasks = $workarounds{$version};