Skip to content

Commit

Permalink
Vagrantfile: fix provider syntax
Browse files Browse the repository at this point in the history
No provider config was being set.
  • Loading branch information
phinze committed May 26, 2015
1 parent 0864c68 commit 397cdab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.provision 'shell', inline: @script, privileged: false
config.vm.synced_folder '.', '/opt/gopath/src/github.com/hashicorp/consul'

%w[vmware_fusion vmware_workstation].each do |_|
config.vm.provider 'p' do |v|
%w[vmware_fusion vmware_workstation].each do |p|
config.vm.provider p do |v|
v.vmx['memsize'] = '2048'
v.vmx['numvcpus'] = '2'
v.vmx['cpuid.coresPerSocket'] = '1'
Expand Down

0 comments on commit 397cdab

Please sign in to comment.