From b05a137f218278172bc30c8d886bcd416918d54c Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Thu, 27 Jun 2019 08:57:23 +0200 Subject: [PATCH] Replace opensuse 42.3 vboxes with opensuse-15.1 openSUSE Leap 42.3 is out of maintenance and end of life. It has been superceded by Leap 15.0 and the current version as of today is 15.1 Change-Id: I2cbe8b6b6638e3428b021e1e2026bda8a7e9ef5c --- Vagrantfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 2bf1cf91..ba2c361d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -41,14 +41,14 @@ Vagrant.configure(2) do |config| bionic.vm.box = "ubuntu/bionic64" end - config.vm.define "opensuse423" do |leap423| - leap423.vm.box = "opensuse/openSUSE-42.3-x86_64" - end - config.vm.define "opensuse150" do |leap150| leap150.vm.box = "opensuse/openSUSE-15.0-x86_64" end + config.vm.define "opensuse151" do |leap151| + leap151.vm.box = "opensuse/openSUSE-15.1-x86_64" + end + config.vm.define "centos7" do |centos7| centos7.vm.box = "centos/7" end