From 8832c5b81ed750ff61e7e72f87248fa0fe75504f Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 17 Mar 2020 08:18:11 -0700 Subject: [PATCH] Add FEDORA-2020-5f05c3ec46 as a workaround to fix FreeIPA upgrade FreeIPA F31 -> F32 upgrade test is currently failing because a new pki-core hit F31 stable but not F32 stable yet. It can't go backwards on upgrade, that breaks stuff. The F32 update has been pushed stable but just hasn't made mirrors yet as the last F32 nightly compose failed, so let's add it to the workarounds for now. Signed-off-by: Adam Williamson --- lib/utils.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/utils.pm b/lib/utils.pm index 9a3324ef..69c82da7 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -441,8 +441,9 @@ sub setup_workaround_repo { my %workarounds = ( "30" => [""], "31" => [""], - # fix for lmod breaking console output tests - "32" => ["FEDORA-2020-755d29d4b0"] + # fix for lmod breaking console output tests, latest pki to + # avoid broken FreeIPA upgrades (it can't go backwards) + "32" => ["FEDORA-2020-755d29d4b0", "FEDORA-2020-5f05c3ec46"] ); # then we'll download each update for our release: my $advisories = $workarounds{$version};