Skip to content

Commit

Permalink
update vm size to 1024Mb and move to 13.10 x64
Browse files Browse the repository at this point in the history
  • Loading branch information
koder-ua committed Mar 25, 2014
1 parent 38478c9 commit b87fb38
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Vagrantfile
@@ -1,8 +1,7 @@

Vagrant.configure("2") do |config|

config.vm.box = 'PythonDevBootstrapPrecise'
config.vm.box_url = "http://files.vagrantup.com/precise32.box"
config.vm.box = 'PythonDevBootstrap_13_10'
config.vm.box_url = "http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-1310-x64-virtualbox-nocm.box"

#network
config.vm.network :private_network, ip: "192.168.33.10"
Expand All @@ -16,7 +15,7 @@ Vagrant.configure("2") do |config|
end
config.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
vb.customize ["modifyvm", :id, "--memory", "512"]
vb.customize ["modifyvm", :id, "--memory", "1024"]
end

config.vm.provision :puppet do |puppet|
Expand All @@ -26,4 +25,4 @@ Vagrant.configure("2") do |config|
puppet.options = "--verbose --debug"
#puppet.options = "--verbose --noop"
end
end
end

0 comments on commit b87fb38

Please sign in to comment.