From d9438e804279e40034e5f2a8c43bf4449c16a6bb Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 17 Mar 2020 08:17:00 -0700 Subject: [PATCH] Drop workaround updates that have been pushed stable Except one that's pushed stable but hasn't made repos yet (as the last F32 nightly compose failed). Signed-off-by: Adam Williamson --- lib/utils.pm | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/lib/utils.pm b/lib/utils.pm index ddb02202..9a3324ef 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -439,12 +439,10 @@ sub setup_workaround_repo { assert_script_run "mkdir -p /opt/workarounds_repo"; assert_script_run "pushd /opt/workarounds_repo"; my %workarounds = ( - # disable modules on upgrade (#1767351) - "30" => ["FEDORA-2020-02ee4b1a1c"], - # disable modules on upgrade (#1767351) - "31" => ["FEDORA-2020-717d521d35"], - # fix for lmod breaking console output tests, f32 backgrounds - "32" => ["FEDORA-2020-755d29d4b0", "FEDORA-2020-ed62604eca"] + "30" => [""], + "31" => [""], + # fix for lmod breaking console output tests + "32" => ["FEDORA-2020-755d29d4b0"] ); # then we'll download each update for our release: my $advisories = $workarounds{$version};