From cd2db0a0c264ea8dbbd189a5d15624f70d62f7ff Mon Sep 17 00:00:00 2001 From: OpenStack Proposal Bot Date: Sat, 9 Jun 2018 00:02:28 +0000 Subject: [PATCH] Updated from OpenStack Ansible Tests Change-Id: I7b1eb1ff5f6521d0e0b743008a2849faaa875955 --- Vagrantfile | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index c7ac466..41bda65 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -18,6 +18,8 @@ Vagrant.configure(2) do |config| config.vm.provider "virtualbox" do |v| v.memory = 6144 v.cpus = 2 + # https://github.com/hashicorp/vagrant/issues/9524 + v.customize ["modifyvm", :id, "--audio", "none"] end config.vm.synced_folder ".", "/vagrant", type: "rsync" @@ -30,15 +32,20 @@ Vagrant.configure(2) do |config| SHELL config.vm.define "ubuntu1604" do |xenial| - xenial.vm.box = "bento/ubuntu-16.04" + xenial.disksize.size = "40GB" + xenial.vm.box = "ubuntu/xenial64" end config.vm.define "opensuse423" do |leap423| - leap423.vm.box = "bento/opensuse-leap-42.3" + 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 "centos7" do |centos7| - centos7.vm.box = "bento/centos-7" + centos7.vm.box = "centos/7" end end