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
This commit is contained in:
Dirk Mueller 2019-06-27 08:57:23 +02:00
parent 4399fd2bee
commit b05a137f21

8
Vagrantfile vendored
View File

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