Skip to content

Instantly share code, notes, and snippets.

@priyaaank
Created October 25, 2012 17:53
Show Gist options
  • Save priyaaank/3954313 to your computer and use it in GitHub Desktop.
Save priyaaank/3954313 to your computer and use it in GitHub Desktop.
Vagrant configuration
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