Skip to content

Commit

Permalink
Use 2 GB memory for Allinone libvirt box.
Browse files Browse the repository at this point in the history
  • Loading branch information
rtnpro committed Aug 17, 2016
1 parent 3908091 commit 76fe166
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Vagrantfile
Expand Up @@ -42,7 +42,11 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|

config.vm.provider "libvirt" do |libvirt, override|
libvirt.cpus = 2
libvirt.memory = 1024
if ALLINONE == 1
libvirt.memory = 2048
else
libvirt.memory = 1024
end
libvirt.driver = 'kvm'
override.vm.box = "centos/7"
override.vm.box_download_checksum = "b2a9f7421e04e73a5acad6fbaf4e9aba78b5aeabf4230eebacc9942e577c1e05"
Expand Down

0 comments on commit 76fe166

Please sign in to comment.