From a43cbce66a6f5cf7d105d6ec09eca104c8cd893a Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Wed, 26 Jul 2017 15:40:10 +0100 Subject: [PATCH] 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 --- Vagrantfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 46436cf8..7d8c27a0 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -36,6 +36,10 @@ Vagrant.configure(2) do |config| leap422.vm.box = "opensuse/openSUSE-42.2-x86_64" end + config.vm.define "opensuse423" do |leap423| + leap423.vm.box = "opensuse/openSUSE-42.3-x86_64" + end + config.vm.define "centos7" do |centos7| centos7.vm.box = "centos/7" end