diff --git a/metadata.json b/metadata.json index 80380c06..58e1749c 100644 --- a/metadata.json +++ b/metadata.json @@ -94,7 +94,8 @@ "operatingsystem": "Ubuntu", "operatingsystemrelease": [ "20.04", - "22.04" + "22.04", + "24.04" ] }, { diff --git a/spec/support/acceptance/supported_versions.rb b/spec/support/acceptance/supported_versions.rb index 9262165e..d0b4af82 100644 --- a/spec/support/acceptance/supported_versions.rb +++ b/spec/support/acceptance/supported_versions.rb @@ -19,7 +19,7 @@ def supported_agent_versions(platform) def supported_server_versions(platform) supported_versions.reject do |version| platform.start_with?('archlinux') || - (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