Vagrant: don't start bionic64 desktop by default

This commit is contained in:
Brian Peterson 2021-11-27 08:58:06 -06:00 committed by Peter Barker
parent 5d811bf57e
commit c974863d29
1 changed files with 2 additions and 1 deletions

3
Vagrantfile vendored
View File

@ -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|