Skip to content

Instantly share code, notes, and snippets.

@rhelmer
Created February 27, 2012 18:41
Show Gist options
  • Select an option

  • Save rhelmer/1926100 to your computer and use it in GitHub Desktop.

Select an option

Save rhelmer/1926100 to your computer and use it in GitHub Desktop.
diff --git a/Vagrantfile b/Vagrantfile
index 30c5a79..de92320 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -1,18 +1,13 @@
Vagrant::Config.run do |config|
config.vm.box = "socorro-all"
- config.vm.network "33.33.33.10"
- config.vm.customize do |vm|
- # 1GB
- vm.memory_size = 1024
- # enable this if you need more cores, e.g. for pg_restore
- # default is 1
- #vm.cpu_count = 4
- end
+ config.vm.network :hostonly, "33.33.33.10"
+ config.vm.share_folder("v-root", "/socorro-host", "../socorro/", :nfs => true)
+ config.vm.customize ["modifyvm", :id, "--memory", "1024"]
# enable this to see the GUI if vagrant cannot connect
config.vm.boot_mode = :gui
config.vm.provision :puppet do |puppet|
puppet.manifest_file = "init.pp"
# enable this to see verbose and debug puppet output
- #puppet.options = "--verbose --debug"
+ #puppet.options = "--verbose --debug --trace --summarize"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment