Skip to content

Commit

Permalink
Add EL9 support
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Apr 10, 2024
1 parent 175c842 commit 237d38e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,15 @@
"operatingsystem": "CentOS",
"operatingsystemrelease": [
"7",
"8"
"8",
"9"
]
},
{
"operatingsystem": "OracleLinux",
"operatingsystemrelease": [
"7"
"7",
"9"
]
},
{
Expand Down Expand Up @@ -78,13 +80,15 @@
{
"operatingsystem": "Rocky",
"operatingsystemrelease": [
"8"
"8",
"9"
]
},
{
"operatingsystem": "AlmaLinux",
"operatingsystemrelease": [
"8"
"8",
"9"
]
}
],
Expand Down
2 changes: 1 addition & 1 deletion spec/acceptance/server_instance_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# run a test task
require 'spec_helper_acceptance'

describe 'postgresql instance test1', if: os[:family] == 'redhat' && os[:release].start_with?('8') do
describe 'postgresql instance test1', if: os[:family] == 'redhat' && !os[:release].start_with?('7') do
pp = <<-MANIFEST
# set global defaults
class { 'postgresql::globals':
Expand Down

0 comments on commit 237d38e

Please sign in to comment.