Created
September 19, 2012 04:56
-
-
Save rcreasey/3747752 to your computer and use it in GitHub Desktop.
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 up | |
| [default] Importing base box 'bnet-base'... | |
| [default] Matching MAC address for NAT networking... | |
| [default] Clearing any previously set forwarded ports... | |
| [default] Forwarding ports... | |
| [default] -- 22 => 2222 (adapter 1) | |
| [default] Creating shared folders metadata... | |
| [default] Clearing any previously set network interfaces... | |
| [default] Preparing network interfaces based on configuration... | |
| [default] Booting VM... | |
| [default] Waiting for VM to boot. This can take a few minutes. |
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| | |
| config.vm.host_name = "template" | |
| config.vm.box = "base" | |
| config.vm.network :hostonly, "192.168.1.100" | |
| config.vm.provision :chef_solo do |chef| | |
| chef.add_recipe "yum" | |
| chef.cookbooks_path = ["configuration/cookbooks", "configuration/site-cookbooks"] | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment