Merge "Vagrantfile: use shortcuts for memory and CPU settings"

This commit is contained in:
Jenkins 2015-09-20 17:27:57 +00:00 committed by Gerrit Code Review
commit a36ad295bb
1 changed files with 2 additions and 2 deletions

4
Vagrantfile vendored
View File

@ -16,8 +16,8 @@
Vagrant.configure(2) do |config|
config.vm.box = 'ubuntu/trusty64'
config.vm.provider 'virtualbox' do |vb|
vb.customize ['modifyvm', :id, '--memory', '1024']
vb.customize ['modifyvm', :id, '--cpus', '1']
vb.memory = 1024
vb.cpus = 1
end
config.ssh.shell = 'bash -c "BASH_ENV=/etc/profile exec bash"'
config.cache.scope = :box if Vagrant.has_plugin?('vagrant-cachier')