From bba7cb14633c092a6fd5a8478f453f78489ca439 Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Fri, 24 Jul 2015 14:34:13 +0200 Subject: [PATCH] Vagrant: Use centos71 base box from icinga.org refs #9453 --- Vagrantfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 11b5e2b9c..7d026fc83 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -22,9 +22,11 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.provision :shell, :path => ".puppet/manifests/puppet.sh" config.vm.provider :virtualbox do |v, override| - override.vm.box = "puppetlabs/centos-7.0-64-puppet" + override.vm.box = "centos-71-x64-vbox" + override.vm.box_url = "http://boxes.icinga.org/centos-71-x64-vbox.box" v.customize ["modifyvm", :id, "--memory", "1024"] + v.customize ["modifyvm", :id, "--cpus", "2"] end config.vm.provider :parallels do |p, override|