mirror of
1
0
Fork 0

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
This commit is contained in:
Kurt McKee 2022-04-10 22:24:19 -05:00
parent 769767c129
commit 57c7c513b9
1 changed files with 1 additions and 1 deletions

2
test/Vagrantfile vendored
View File

@ -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"]