From 0f4d1cec54bfea655d1d5045c81d1ca0155f399b Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Thu, 13 May 2021 14:46:17 +1000 Subject: [PATCH] Vagrant: note EOL for various versions of Ubuntu --- Vagrantfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index a3f23b11e6..1bcc448f1f 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -102,7 +102,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| end end - # 18.04 LTS + # 18.04 LTS EOL April 2023 # Only kept around for those few dev's who have already got this image and continue to use it; not available for download config.vm.define "bionic32", autostart: false do |bionic32| bionic32.vm.box = "ubuntu/bionic32" @@ -112,7 +112,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| end end - # 18.04 LTS + # 18.04 LTS EOL April 2023 config.vm.define "bionic64", primary: true do |bionic64| bionic64.vm.box = "ubuntu/bionic64" bionic64.vm.provision :shell, path: "Tools/vagrant/initvagrant.sh" @@ -121,7 +121,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| end end - # 18.04 LTS + # 18.04 LTS EOL April 2023 config.vm.define "bionic64-desktop", primary: true do |bionic64| bionic64.vm.box = "ubuntu/bionic64" bionic64.vm.provision :shell, path: "Tools/vagrant/initvagrant-desktop.sh"