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 <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2020-09-14 18:48:08 -07:00
parent d86960166d
commit ee666d5f13
1 changed files with 3 additions and 3 deletions

View File

@ -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};