Vagrant: add support for Ubuntu 22.04, Jammy

This commit is contained in:
Peter Barker 2022-03-06 13:00:02 +11:00 committed by Peter Barker
parent cf5565f17c
commit 7e7da560d5
1 changed files with 19 additions and 1 deletions

20
Vagrantfile vendored
View File

@ -227,5 +227,23 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
impish.vm.boot_timeout = 1200
end
end
# 22.04 LTS EOL Apr 2032
config.vm.define "jammy", autostart: false do |jammy|
jammy.vm.box = "ubuntu/jammy64"
jammy.vm.provision :shell, path: "Tools/vagrant/initvagrant.sh"
jammy.vm.provider "virtualbox" do |vb|
vb.name = "ArduPilot (jammy)"
end
jammy.vm.boot_timeout = 1200
end
config.vm.define "jammy-desktop", autostart: false do |jammy|
jammy.vm.box = "ubuntu/jammy64"
jammy.vm.provision :shell, path: "Tools/vagrant/initvagrant-desktop.sh"
jammy.vm.provider "virtualbox" do |vb|
vb.name = "ArduPilot (jammy-desktop)"
vb.gui = true
end
jammy.vm.boot_timeout = 1200
end
end