Skip to content

Commit

Permalink
Update for Fedora 39 and 40
Browse files Browse the repository at this point in the history
  • Loading branch information
bmhughes committed Jul 31, 2024
1 parent 385d2d7 commit 645c033
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ This file is used to list changes made in each version of the yum-remi-chef coo

## Unreleased

- Update for Fedora 39 and 40

## 7.0.8 - *2024-05-06*

## 7.0.7 - *2024-05-06*
Expand Down
4 changes: 3 additions & 1 deletion attributes/remi-gpgkey.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@
'https://rpms.remirepo.net/RPM-GPG-KEY-remi2021'
when 36, 37
'https://rpms.remirepo.net/RPM-GPG-KEY-remi2022'
when 38
when 38, 39
'https://rpms.remirepo.net/RPM-GPG-KEY-remi2023'
when 40
'https://rpms.remirepo.net/RPM-GPG-KEY-remi2024'
else
Chef::Log.fatal("Fedora #{node['platform_version'].to_i} is not currently supported by this cookbook")
end
Expand Down
4 changes: 3 additions & 1 deletion libraries/helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ def remi_gpg_key
'https://rpms.remirepo.net/RPM-GPG-KEY-remi2021'
when 36, 37
'https://rpms.remirepo.net/RPM-GPG-KEY-remi2022'
when 38 # future proofing
when 38, 39
'https://rpms.remirepo.net/RPM-GPG-KEY-remi2023'
when 40
'https://rpms.remirepo.net/RPM-GPG-KEY-remi2024'
end
when 'rhel'
case node['platform_version'].to_i
Expand Down

0 comments on commit 645c033

Please sign in to comment.