[Vagrantfile] set resources for the provider 'parallels' (#7659)

This commit is contained in:
Christoph Blecker 2016-07-15 04:56:48 -07:00 committed by Paul Stack
parent f7da261294
commit 31297f1c9b
1 changed files with 5 additions and 0 deletions

5
Vagrantfile vendored
View File

@ -60,4 +60,9 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
v.memory = 4096
v.cpus = 2
end
config.vm.provider "parallels" do |prl|
prl.memory = 4096
prl.cpus = 2
end
end