From 5fa48c76d7df2399d8c1009e47e4e9fee7704880 Mon Sep 17 00:00:00 2001 From: Gerasimos Chourdakis Date: Tue, 23 Apr 2024 22:15:05 +0200 Subject: [PATCH 1/4] Downgrade base box version --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index a2878d3..6a9dfaa 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -7,6 +7,7 @@ Vagrant.configure("2") do |config| # However, it does not build: https://github.com/precice/vm/issues/83 # config.vm.box = "generic/ubuntu2004" config.vm.box = "bento/ubuntu-20.04" + config.vm.box_version = "202401.31.0" # We don't want the box to automatically update every time it starts. # We can instead handle updates internally, without destroying the machine. From a66d2b032e3ec276640eefbd9bc18487e656995d Mon Sep 17 00:00:00 2001 From: Gerasimos Chourdakis Date: Tue, 23 Apr 2024 22:21:10 +0200 Subject: [PATCH 2/4] Switch again to generic/ubuntu2004 --- Vagrantfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 6a9dfaa..b56913d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -5,9 +5,9 @@ Vagrant.configure("2") do |config| # The generic/ images support virtualbox as well as libvirt and hyperv. # This allows us to create performance oriented images for Linux (libvirt) and Windows (hyperv). # However, it does not build: https://github.com/precice/vm/issues/83 - # config.vm.box = "generic/ubuntu2004" - config.vm.box = "bento/ubuntu-20.04" - config.vm.box_version = "202401.31.0" + config.vm.box = "generic/ubuntu2004" + # config.vm.box = "bento/ubuntu-20.04" + # config.vm.box_version = "202401.31.0" # We don't want the box to automatically update every time it starts. # We can instead handle updates internally, without destroying the machine. From a2dd1a104b243549d08fbc9aa80b989a25e9764f Mon Sep 17 00:00:00 2001 From: Gerasimos Chourdakis Date: Tue, 23 Apr 2024 22:32:45 +0200 Subject: [PATCH 3/4] Switch to bento/ubuntu-20.04 v202309.09.0 --- Vagrantfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index b56913d..3d1aed1 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -5,9 +5,9 @@ Vagrant.configure("2") do |config| # The generic/ images support virtualbox as well as libvirt and hyperv. # This allows us to create performance oriented images for Linux (libvirt) and Windows (hyperv). # However, it does not build: https://github.com/precice/vm/issues/83 - config.vm.box = "generic/ubuntu2004" - # config.vm.box = "bento/ubuntu-20.04" - # config.vm.box_version = "202401.31.0" + # config.vm.box = "generic/ubuntu2004" + config.vm.box = "bento/ubuntu-20.04" + config.vm.box_version = "v202309.09.0" # We don't want the box to automatically update every time it starts. # We can instead handle updates internally, without destroying the machine. From 208ccfbb64858a245ac2db59d11feaaf66e0fadc Mon Sep 17 00:00:00 2001 From: Gerasimos Chourdakis Date: Tue, 23 Apr 2024 22:33:50 +0200 Subject: [PATCH 4/4] Fix version --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 3d1aed1..c3cc2ae 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -7,7 +7,7 @@ Vagrant.configure("2") do |config| # However, it does not build: https://github.com/precice/vm/issues/83 # config.vm.box = "generic/ubuntu2004" config.vm.box = "bento/ubuntu-20.04" - config.vm.box_version = "v202309.09.0" + config.vm.box_version = "202309.09.0" # We don't want the box to automatically update every time it starts. # We can instead handle updates internally, without destroying the machine.