From 60841387c587c15862de82107cbd0dcd763927e7 Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Sun, 21 Apr 2013 18:59:36 -0300 Subject: [PATCH] Configure precise box to use 1.5gb ram and 2 cpus --- development/Vagrantfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/development/Vagrantfile b/development/Vagrantfile index bfe2b7e..3922af2 100644 --- a/development/Vagrantfile +++ b/development/Vagrantfile @@ -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|