From fb1bc1dad803e86aa1baf9e0eada6c6cbf0ae61c Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 17 Sep 2020 16:40:53 -0700 Subject: [PATCH] Add mock 2.6 to workarounds, drop kernel for F31 and F32 Kernel updates for F31 and F32 went stable so they can come out. mock 2.6 fixes the bug that occurs when /etc/resolv.conf is a dangling symlink - this breaks the live_build test. 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 72452a62..3f1034c0 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -439,9 +439,9 @@ sub setup_workaround_repo { assert_script_run "mkdir -p /opt/workarounds_repo"; assert_script_run "pushd /opt/workarounds_repo"; my %workarounds = ( - "31" => ["FEDORA-2020-5920a7a0b2"], - "32" => ["FEDORA-2020-3c6fedeb83"], - "33" => ["FEDORA-2020-450fc40117"] + "31" => ["FEDORA-2020-ef6074cb37"], + "32" => ["FEDORA-2020-f7ce2b3a71"], + "33" => ["FEDORA-2020-957351614b", "FEDORA-2020-8b8b3ade7b"] ); # then we'll download each update for our release: my $advisories = $workarounds{$version};