Created
April 15, 2011 18:44
-
-
Save denisbr/922231 to your computer and use it in GitHub Desktop.
Customize the VBox VM
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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