vagrant/config/default.rb

21 lines
596 B
Ruby
Raw Normal View History

Vagrant::Config.run do |config|
2010-02-02 06:14:40 +00:00
# default config goes here
config.ssh.username = "vagrant"
config.ssh.password = "vagrant"
2010-02-02 06:14:40 +00:00
config.ssh.host = "localhost"
config.ssh.forwarded_port_key = "ssh"
2010-02-02 06:14:40 +00:00
config.ssh.max_tries = 10
config.dotfile_name = ".vagrant"
2010-02-02 06:14:40 +00:00
config.vm.base = "~/.vagrant/base/base.ovf"
2010-02-02 06:14:40 +00:00
config.vm.base_mac = "0800279C2E41"
config.vm.project_directory = "/vagrant"
config.vm.forward_port("ssh", 22, 2222)
config.chef.cookbooks_path = "cookbooks"
config.chef.provisioning_path = "/tmp/vagrant-chef"
config.chef.json = {
:recipes => ["vagrant_main"]
}
2010-02-02 06:14:40 +00:00
end