From ee666d5f1351e46a896e502d48ea1fefe49a739d Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Mon, 14 Sep 2020 18:48:08 -0700 Subject: [PATCH] Add kernel 5.8.9 updates to workarounds (fix parted problems) Kernel 5.8.8 broke the installer by changing return codes for partition operations, these updates are listed as fixing it. 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 60980d2a..72452a62 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" => [], - "32" => [], - "33" => [] + "31" => ["FEDORA-2020-5920a7a0b2"], + "32" => ["FEDORA-2020-3c6fedeb83"], + "33" => ["FEDORA-2020-450fc40117"] ); # then we'll download each update for our release: my $advisories = $workarounds{$version};