diff options
| author | varac <varacanero@zeromail.org> | 2016-01-18 15:42:03 +0100 | 
|---|---|---|
| committer | varac <varacanero@zeromail.org> | 2016-01-18 15:42:03 +0100 | 
| commit | 4b49d0757df4cb1d52e35ee4b84d51906f716344 (patch) | |
| tree | 2296a4c1ffca8556ce4dd3550eced13e41984aa4 /lib/leap_cli | |
| parent | 428ff11ca95ba91a529dff7ba3a8a40c854aa39b (diff) | |
increase ram of vagrant nodes to 1,5g
otherwise, machines will be out-of-mememory on deploy
Diffstat (limited to 'lib/leap_cli')
| -rw-r--r-- | lib/leap_cli/commands/vagrant.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/leap_cli/commands/vagrant.rb b/lib/leap_cli/commands/vagrant.rb index 5168a3c0..9fdd48e3 100644 --- a/lib/leap_cli/commands/vagrant.rb +++ b/lib/leap_cli/commands/vagrant.rb @@ -151,10 +151,10 @@ module LeapCli; module Commands          lines << %[    config.vm.provider "virtualbox" do |v|]          lines << %[      v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]]          lines << %[      v.name   = "#{node.name}"] -        lines << %[      v.memory = 1024] +        lines << %[      v.memory = 1536]          lines << %[    end]          lines << %[    config.vm.provider "libvirt" do |v|] -        lines << %[      v.memory = 1024] +        lines << %[      v.memory = 1536]          lines << %[    end]          lines << %[    #{leapfile.custom_vagrant_vm_line}] if leapfile.custom_vagrant_vm_line          lines << %[  end] | 
