From c974863d291d1a32ed015bb9b9d8cccdaed0791f Mon Sep 17 00:00:00 2001 From: Brian Peterson Date: Sat, 27 Nov 2021 08:58:06 -0600 Subject: [PATCH] Vagrant: don't start bionic64 desktop by default --- Vagrantfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 0286078ac6..b33b36935e 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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|