-
-
Notifications
You must be signed in to change notification settings - Fork 374
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 Support for RedHat/CentOS 8 #594
Conversation
manifests/params.pp
Outdated
@@ -10,7 +10,11 @@ | |||
} | |||
|
|||
$ensure = 'present' | |||
$version = 'system' | |||
if $facts['os']['family'] == 'RedHat' and $facts['os']['release']['major'] == '8' { | |||
$version = '3' |
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.
feels like we should change $version
to '3'
as default for all platforms. We set that in the acceptance tests and don't test anything else. (should be changed in another PR)
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.
I think the exception should be EL7 because it feels wrong to do something different than what ships with a standard install of the OS. I think the logic could just be if EL7 , version=2 else version=3.
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.
I will try to do that in another PR
@bastelfreak I've rebased |
Pull Request (PR) description
Ad support for RedHat / CentOS 8
This Pull Request (PR) fixes the following issues
This will cause conflicts with #593 so whichever is merged last will have to be rebased to fix conflicts.