-
Notifications
You must be signed in to change notification settings - Fork 613
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
Clean up globals logic to support CentOS 8 stream #1225
Conversation
postgresql::globals is a classBreaking changes to this file WILL impact these 20 modules (exact match):
Breaking changes to this file MAY impact these 2 modules (near match):This module is declared in 70 of 576 indexed public
|
Codecov Report
@@ Coverage Diff @@
## main #1225 +/- ##
==========================================
+ Coverage 65.81% 66.18% +0.37%
==========================================
Files 14 14
Lines 351 349 -2
==========================================
Hits 231 231
+ Misses 120 118 -2
Continue to review full report at Codecov.
|
Thanks @ekohl for your contribution as always. |
16b80c3
to
f064ba8
Compare
Looks like I need to do a bit more. |
f064ba8
to
f80ae57
Compare
I went through all files that used the full version. Also went through tests. It's confusing that this module places the files in |
This is a code simplification for distributions that don't change the PostgreSQL version in a major release. As a bonus fact, it adds support for CentOS 8 Stream which identifies itself without a minor version. For completeness, the OS facts from CentOS 8 Stream: # facter os { architecture => "x86_64", family => "RedHat", hardware => "x86_64", name => "CentOS", release => { full => "8", major => "8" }, selinux => { enabled => false } }
Both branches of the selector have the same version so it's redundant.
f80ae57
to
0e7dca8
Compare
💚 now |
Thank you @ekohl for the fixes. |
@sheenaajay anything holding back a merge? I hope to see this in a released version soon. |
@ekohl Sorry for the delay. Next one on the list :-) . We have a release coming soon for a bug fix and can get this also included. Thank you. |
Clean up globals logic to support CentOS 8 stream
This is a code simplification for distributions that don't change the
PostgreSQL version in a major release. As a bonus fact, it adds support for
CentOS 8 Stream which identifies itself without a minor version.
For completeness, the OS facts from CentOS 8 Stream:
This is an alternative to #1222.