Vagrantfile: Add openSUSE Leap 42.3

openSUSE Leap 42.3 has been officially released, so add it as an option
to the Vagrantfile.

Change-Id: I3c4d6a9b963f872b3b15c4bcee571dae2c7547d5
This commit is contained in:
Markos Chandras 2017-07-26 15:40:10 +01:00
parent 321123b018
commit a43cbce66a

4
Vagrantfile vendored
View File

@ -36,6 +36,10 @@ Vagrant.configure(2) do |config|
leap422.vm.box = "opensuse/openSUSE-42.2-x86_64" leap422.vm.box = "opensuse/openSUSE-42.2-x86_64"
end end
config.vm.define "opensuse423" do |leap423|
leap423.vm.box = "opensuse/openSUSE-42.3-x86_64"
end
config.vm.define "centos7" do |centos7| config.vm.define "centos7" do |centos7|
centos7.vm.box = "centos/7" centos7.vm.box = "centos/7"
end end