Created
October 25, 2012 17:53
-
-
Save priyaaank/3954313 to your computer and use it in GitHub Desktop.
Vagrant configuration
This file contains hidden or 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| | |
| # All Vagrant configuration is done here. The most common configuration | |
| # options are documented and commented below. For a complete reference, | |
| # please see the online documentation at vagrantup.com. | |
| # Every Vagrant virtual environment requires a box to build off of. | |
| config.vm.box = "ci" | |
| # Assign this VM to a host-only network IP, allowing you to access it | |
| # via the IP. Host-only networks can talk to the host machine as well as | |
| # any other machines on the same network, but cannot be accessed (through this | |
| # network interface) by any external networks. | |
| config.vm.network :hostonly, "192.168.1.10" | |
| # Enable provisioning with chef solo, specifying a cookbooks path, roles | |
| # path, and data_bags path (all relative to this Vagrantfile), and adding | |
| # some recipes and/or roles. | |
| # | |
| config.vm.provision :chef_solo do |chef| | |
| chef.cookbooks_path = ["./cookbooks","./site-cookbooks"] | |
| chef.add_recipe "apt" | |
| chef.add_recipe "apache2" | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment