Skip to content

Commit 26c7bdd

Browse files
committed
Add Ubuntu 24.04 to supported OS
1 parent d2bfd89 commit 26c7bdd

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

metadata.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@
125125
"operatingsystem": "Ubuntu",
126126
"operatingsystemrelease": [
127127
"20.04",
128-
"22.04"
128+
"22.04",
129+
"24.04"
129130
]
130131
},
131132
{

spec/spec_helper_methods.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def baseline_os_hash
1313
},
1414
{
1515
'operatingsystem' => 'Ubuntu',
16-
'operatingsystemrelease' => %w[20.04 22.04]
16+
'operatingsystemrelease' => %w[20.04 22.04 24.04]
1717
},
1818
{
1919
'operatingsystem' => 'Archlinux',

spec/support/acceptance/supported_versions.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def supported_server_versions(platform)
2020
supported_versions.reject do |version|
2121
platform.start_with?('archlinux') ||
2222
(version >= '5.2' && platform.start_with?('el-7')) ||
23-
(version < '6.0' && platform.start_with?('el-9', 'ubuntu-22', 'debian-12')) ||
23+
(version < '6.0' && platform.start_with?('el-9', 'ubuntu-22', 'ubuntu-24', 'debian-12')) ||
2424
(version >= '7.0' && platform.start_with?('ubuntu-20', 'debian-11'))
2525
end
2626
end

0 commit comments

Comments
 (0)