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 220e18f commit 2919a24Copy full SHA for 2919a24
metadata.json
@@ -52,7 +52,7 @@
52
"operatingsystemrelease": [
53
"7",
54
"8",
55
- "8"
+ "9"
56
]
57
},
58
{
spec/acceptance/puppetserver_upgrade_spec.rb
@@ -16,7 +16,12 @@
16
17
case ENV['BEAKER_PUPPET_COLLECTION']
18
when 'puppet7'
19
- from_version = '7.6.0'
+ from_version =
20
+ if fact('os.family') == 'RedHat' && fact('os.release.major') == '9'
21
+ '7.13.0'
22
+ else
23
+ '7.6.0'
24
+ end
25
to_version = '7.13.0'
26
else
27
raise 'Unsupported Puppet collection'
0 commit comments