Browse Source

Vagrant: add support for Impish

gps-1.3.1
Peter Barker 3 years ago committed by Peter Barker
parent
commit
d89986f273
  1. 10
      Vagrantfile

10
Vagrantfile vendored

@ -216,5 +216,15 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| @@ -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

Loading…
Cancel
Save