Skip to content

Instantly share code, notes, and snippets.

@denisbr
Created April 15, 2011 18:44
Show Gist options
  • Save denisbr/922231 to your computer and use it in GitHub Desktop.
Save denisbr/922231 to your computer and use it in GitHub Desktop.
Customize the VBox VM
Vagrant::Config.run do |config|
config.vm.provision :puppet do |puppet|
puppet.manifests_path = "puppetmanifests"
puppet.manifest_file = "main.pp"
end
config.vm.box = "base"
config.vm.customize do |vm|
vm.memory_size = 1024
vm.name = "Nginx+PHP5-FPM"
vm.cpu_count = 2
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment