Vagrant: add support for Impish

This commit is contained in:
Peter Barker 2021-11-15 16:10:22 +11:00 committed by Peter Barker
parent bc9ab66348
commit d89986f273
1 changed files with 10 additions and 0 deletions

10
Vagrantfile vendored
View File

@ -216,5 +216,15 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
hirsute.vm.boot_timeout = 1200
end
# 21.10
config.vm.define "impish", autostart: false do |impish|
impish.vm.box = "ubuntu/impish64"
impish.vm.provision :shell, path: "Tools/vagrant/initvagrant.sh"
impish.vm.provider "virtualbox" do |vb|
vb.name = "ArduPilot (impish)"
end
impish.vm.boot_timeout = 1200
end
end