Browse Source

Adding 32bit box to Vagrantfile

pull/42/head
Armon Dadgar 11 years ago
parent
commit
99c532d655
  1. 8
      Vagrantfile

8
Vagrantfile vendored

@ -32,7 +32,6 @@ sudo apt-get install -y git-core
SCRIPT
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "precise64"
config.vm.provision "shell", inline: $script
["vmware_fusion", "vmware_workstation"].each do |p|
@ -42,4 +41,11 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
v.vmx["cpuid.coresPerSocket"] = "1"
end
end
config.vm.define "default" do |n1|
n1.vm.box = "hashicorp/precise64"
end
config.vm.define "32bit" do |n2|
n2.vm.box = "chef/ubuntu-12.04-i386"
end
end

Loading…
Cancel
Save