Using older OS's for compilation

This commit is contained in:
Armon Dadgar 2014-05-01 11:08:54 -07:00
parent 9c83a54871
commit 4916721fbb
1 changed files with 3 additions and 3 deletions

6
Vagrantfile vendored
View File

@ -42,10 +42,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end end
end end
config.vm.define "default" do |n1| config.vm.define "64bit" do |n1|
n1.vm.box = "hashicorp/precise64" n1.vm.box = "chef/ubuntu-10.04"
end end
config.vm.define "32bit" do |n2| config.vm.define "32bit" do |n2|
n2.vm.box = "chef/ubuntu-12.04-i386" n2.vm.box = "chef/ubuntu-10.04-i386"
end end
end end