Skip to content

Commit 237d38e

Browse files
committed
Add EL9 support
1 parent 175c842 commit 237d38e

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

metadata.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,15 @@
3838
"operatingsystem": "CentOS",
3939
"operatingsystemrelease": [
4040
"7",
41-
"8"
41+
"8",
42+
"9"
4243
]
4344
},
4445
{
4546
"operatingsystem": "OracleLinux",
4647
"operatingsystemrelease": [
47-
"7"
48+
"7",
49+
"9"
4850
]
4951
},
5052
{
@@ -78,13 +80,15 @@
7880
{
7981
"operatingsystem": "Rocky",
8082
"operatingsystemrelease": [
81-
"8"
83+
"8",
84+
"9"
8285
]
8386
},
8487
{
8588
"operatingsystem": "AlmaLinux",
8689
"operatingsystemrelease": [
87-
"8"
90+
"8",
91+
"9"
8892
]
8993
}
9094
],

spec/acceptance/server_instance_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# run a test task
44
require 'spec_helper_acceptance'
55

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

0 commit comments

Comments
 (0)