Skip to content

Instantly share code, notes, and snippets.

@rcreasey
Created September 19, 2012 04:56
Show Gist options
  • Select an option

  • Save rcreasey/3747752 to your computer and use it in GitHub Desktop.

Select an option

Save rcreasey/3747752 to your computer and use it in GitHub Desktop.
% 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.
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