Browse Source

Tools: Vagrantfile: add entry for bionic64

master
Peter Barker 7 years ago
parent
commit
46b1a2d117
  1. 10
      Vagrantfile

10
Vagrantfile vendored

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

Loading…
Cancel
Save