Configure precise box to use 1.5gb ram and 2 cpus

This commit is contained in:
Fabio Rehm 2013-04-21 18:59:36 -03:00
parent c0121f5953
commit 60841387c5

View file

@ -55,6 +55,15 @@ Vagrant.configure("2") do |config|
precise.vm.box = 'precise64'
precise.vm.hostname = 'vbox'
precise.vm.box_url = 'http://files.vagrantup.com/precise64.box'
precise.vm.provider :virtualbox do |vb|
# Configure VM to use 1.5gb of ram and 2 cpus
vb.customize [
"modifyvm", :id,
"--memory", '1536',
"--cpus", '2'
]
end
end
config.vm.define :lxc do |lxc_config|