From 57c7c513b9e9ec226850214571790b62e0d2be7f Mon Sep 17 00:00:00 2001 From: Kurt McKee Date: Sun, 10 Apr 2022 22:24:19 -0500 Subject: [PATCH] Update the Vagrantfile target OS to Ubuntu jammy This resolves VirtualBox 5.x/6.x Guest Additions incompatibilities that cause all of the unit tests to fail under VirtualBox 6.1. Fixes #305 --- test/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Vagrantfile b/test/Vagrantfile index dccf3f3..d70094f 100644 --- a/test/Vagrantfile +++ b/test/Vagrantfile @@ -1,5 +1,5 @@ Vagrant.configure(2) do |config| - config.vm.box = 'ubuntu/bionic64' + config.vm.box = 'ubuntu/jammy64' config.vm.synced_folder "..", "/dotbot", mount_options: ["ro"]