From b600988d550f4adfe8d0e9a5aa47be1e92b2bd35 Mon Sep 17 00:00:00 2001 From: evan challias Date: Wed, 25 Feb 2026 19:36:17 +0100 Subject: [PATCH 1/2] feat: add ubuntu 24.04 --- metadata.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/metadata.json b/metadata.json index 06a985b..42999ff 100644 --- a/metadata.json +++ b/metadata.json @@ -15,7 +15,8 @@ { "operatingsystem": "Ubuntu", "operatingsystemrelease": [ - "22.04" + "22.04", + "24.04" ] }, { From 003db9144e1e6b35501aacb08a5d87d42cdeff7f Mon Sep 17 00:00:00 2001 From: evan challias Date: Mon, 23 Mar 2026 16:49:30 +0100 Subject: [PATCH 2/2] fix : add 24.04 to acceptance test --- spec/acceptance/01_virtualbox_spec.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/spec/acceptance/01_virtualbox_spec.rb b/spec/acceptance/01_virtualbox_spec.rb index 755442c..6d56f78 100644 --- a/spec/acceptance/01_virtualbox_spec.rb +++ b/spec/acceptance/01_virtualbox_spec.rb @@ -3,7 +3,7 @@ require 'spec_helper_acceptance' describe 'virtualbox class' do - virtualbox_versions = ['5.0', '5.1', '5.2', '6.0', '6.1', '7.0'] + virtualbox_versions = ['5.0', '5.1', '5.2', '6.0', '6.1', '7.0', '7.1', '7.2'] test_from = case fact('os.name') when 'CentOS', 'RedHat' @@ -14,6 +14,8 @@ '5.1' when '20.04' '6.0' + when '22.04', '24.04' + '7.2' end when 'Debian' case fact('os.release.major')