-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add AlmaLinux 8 & 9 support #234
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like dhcping can't be installed, probably because EPEL isn't enabled.
@ekohl i don't understand this one as well? would you mind expanding it more? |
If you look for EPEL in he module you can find: puppet-dhcp/spec/setup_acceptance_node.pp Lines 1 to 6 in 545894d
I'd recommend checking for the Red Hat family and excluding the Fedora OS instead. |
Added AlmaLinux 8 and 9 to the supported operating systems in metadata.json. These changes ensure that we start testing with AlmaLinux 8 and 9 instead of CentOS 8 Stream. This update is part of our transition to better support AlmaLinux in our Puppet modules. See, for details: theforeman/foreman-infra#2087
if $facts['os']['name'] == 'CentOS' { | ||
package { 'epel-release': | ||
if $facts['os']['family'] == 'RedHat' and $facts['os']['name'] != 'Fedora' { | ||
package { 'epel-release': |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please be careful with indenting. I'm surprised CI didn't flag this
package { 'epel-release': | |
package { 'epel-release': |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added AlmaLinux 8 and 9 to the supported operating systems in metadata.json.
These changes ensure that we start testing with AlmaLinux 8 and 9 instead of CentOS 8 Stream. This update is part of our transition to better support AlmaLinux in our Puppet modules.
See, for details: theforeman/foreman-infra#2087