From d89986f27313c690ea827d1898d771f60efab67f Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Mon, 15 Nov 2021 16:10:22 +1100 Subject: [PATCH] Vagrant: add support for Impish --- Vagrantfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 1bcc448f1f..0286078ac6 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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