From 4298aa548b516a98649d0c6e40f51902a9130e6a Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Tue, 12 Nov 2013 09:42:44 +0100 Subject: [PATCH] Use 32-bit CentOS for the Vagrant VM. Fixes #5063 --- Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index e9c2cffa0..372488ed2 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -9,11 +9,11 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # please see the online documentation at vagrantup.com. # Every Vagrant virtual environment requires a box to build off of. - config.vm.box = "centos-6.4-x64-vbox" + config.vm.box = "centos-6.4-i386-vbox" # The url from where the 'config.vm.box' box will be fetched if it # doesn't already exist on the user's system. - config.vm.box_url = "http://vagrant-boxes.icinga.org/centos-64-x64-vbox4212.box" + config.vm.box_url = "http://boxes.icinga.org/centos-64-i386-vbox4212.box" # The hostname the machine should have. Defaults to nil. If nil, Vagrant # won't manage the hostname. If set to a string, the hostname will be set on boot.