We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fb4058 commit c9b7a89Copy full SHA for c9b7a89
CHANGELOG.md
@@ -4,6 +4,7 @@ This file is used to list changes made in the last 3 major versions of the postg
4
5
## Unreleased
6
7
+- resolved cookstyle error: libraries/sql/_connection.rb:77:11 refactor: `Chef/Style/UnnecessaryPlatformCaseStatement`
8
## 12.0.0 - *2024-11-05*
9
10
- Remove support for Fedora
libraries/sql/_connection.rb
@@ -74,8 +74,7 @@ def install_pg_gem
74
'libpq5'
75
end
76
77
- case node['platform_family']
78
- when 'rhel'
+ if platform_family?('rhel')
79
case node['platform_version'].to_i
80
when 7
81
declare_resource(:package, 'epel-release') { compile_time(true) }
0 commit comments