From f33fb22360f32bdfb3fbdecd1004ec53e2fe6c35 Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Thu, 23 May 2013 10:54:06 +0100 Subject: [PATCH] Switch buildserver guest os --- buildserver/Vagrantfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/buildserver/Vagrantfile b/buildserver/Vagrantfile index 8420dcf7..ea9ad056 100644 --- a/buildserver/Vagrantfile +++ b/buildserver/Vagrantfile @@ -1,13 +1,13 @@ Vagrant::Config.run do |config| - config.vm.box = "precise32" - config.vm.box_url = "/shares/software/OS and Boot/precise32.box" + config.vm.box = "raring64" + config.vm.box_url = "/shares/software/OS and Boot/raring64.box" config.vm.customize ["modifyvm", :id, "--memory", "2048"] config.vm.provision :shell, :path => "fixpaths.sh" # Set apt proxy - remove, or adjust this, accordingly! - config.vm.provision :shell, :inline => 'sudo echo "Acquire::http { Proxy \"http://glencoe:3142\"; };" > /etc/apt/apt.conf.d/02proxy && sudo apt-get update' + config.vm.provision :shell, :inline => 'sudo echo "Acquire::http { Proxy \"http://192.168.0.19:8000\"; };" > /etc/apt/apt.conf.d/02proxy && sudo apt-get update' config.vm.provision :chef_solo do |chef| chef.cookbooks_path = "cookbooks" -- 2.30.2