mirror of https://github.com/ArduPilot/ardupilot
Vagrant: don't start bionic64 desktop by default
This commit is contained in:
parent
5d811bf57e
commit
c974863d29
|
@ -44,6 +44,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|||
# removing this line causes "A box must be specified." error
|
||||
# and this is the default box that will be booted if no name is specified
|
||||
config.vm.box = "ubuntu/bionic64"
|
||||
config.vm.boot_timeout = 1500
|
||||
|
||||
# LTS, EOL April, 2019:
|
||||
config.vm.define "trusty32", autostart: false do |trusty32|
|
||||
|
@ -122,7 +123,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|||
end
|
||||
|
||||
# 18.04 LTS EOL April 2023
|
||||
config.vm.define "bionic64-desktop", primary: true do |bionic64|
|
||||
config.vm.define "bionic64-desktop", autostart: false do |bionic64|
|
||||
bionic64.vm.box = "ubuntu/bionic64"
|
||||
bionic64.vm.provision :shell, path: "Tools/vagrant/initvagrant-desktop.sh"
|
||||
bionic64.vm.provider "virtualbox" do |vb|
|
||||
|
|
Loading…
Reference in New Issue