From 46b1a2d1172d54a14c128d84743e4090ef69f1c5 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Tue, 15 May 2018 12:52:36 +1000 Subject: [PATCH] Tools: Vagrantfile: add entry for bionic64 --- Vagrantfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 9a62f8d2d2..96eb64e94f 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -104,5 +104,15 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| end end + # 18.04 LTS , bleeding edge. + config.vm.define "bionic64", autostart: false do |bionic64| + config.vm.box = "ubuntu/bionic64" + config.vm.provision :shell, path: "Tools/vagrant/initvagrant.sh" + config.vm.provider "virtualbox" do |vb| + vb.name = "ArduPilot (bionic64)" + vb.gui = true + end + end + end