diff --git a/metadata.json b/metadata.json index 38cd6ae8..79542cc1 100644 --- a/metadata.json +++ b/metadata.json @@ -125,7 +125,8 @@ "operatingsystem": "Ubuntu", "operatingsystemrelease": [ "20.04", - "22.04" + "22.04", + "24.04" ] }, { diff --git a/spec/spec_helper_methods.rb b/spec/spec_helper_methods.rb index 5b3e0206..56431b24 100644 --- a/spec/spec_helper_methods.rb +++ b/spec/spec_helper_methods.rb @@ -13,7 +13,7 @@ def baseline_os_hash }, { 'operatingsystem' => 'Ubuntu', - 'operatingsystemrelease' => %w[20.04 22.04] + 'operatingsystemrelease' => %w[20.04 22.04 24.04] }, { 'operatingsystem' => 'Archlinux', diff --git a/spec/support/acceptance/supported_versions.rb b/spec/support/acceptance/supported_versions.rb index a8006c0c..b7af2fbb 100644 --- a/spec/support/acceptance/supported_versions.rb +++ b/spec/support/acceptance/supported_versions.rb @@ -20,7 +20,7 @@ def supported_server_versions(platform) supported_versions.reject do |version| platform.start_with?('archlinux') || (version >= '5.2' && platform.start_with?('el-7')) || - (version < '6.0' && platform.start_with?('el-9', 'ubuntu-22', 'debian-12')) || + (version < '6.0' && platform.start_with?('el-9', 'ubuntu-22', 'ubuntu-24', 'debian-12')) || (version >= '7.0' && platform.start_with?('ubuntu-20', 'debian-11')) end end