vagrant/config/default.rb

31 lines
845 B
Ruby
Raw Normal View History

Vagrant::Config.run do |config|
2010-02-02 06:14:40 +00:00
# default config goes here
config.vagrant.log_output = STDOUT
2010-02-15 21:55:42 +00:00
config.vagrant.home = "~/.vagrant"
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)
2010-02-12 08:03:53 +00:00
config.vm.disk_image_format = 'VMDK'
config.package.name = 'vagrant'
config.package.extension = '.box'
config.chef.enabled = false
config.chef.cookbooks_path = "cookbooks"
config.chef.provisioning_path = "/tmp/vagrant-chef"
config.chef.json = {
:instance_role => "vagrant",
:recipes => ["vagrant_main"]
}
2010-02-12 08:03:53 +00:00
end