2010-02-02 06:14:40 +00:00
|
|
|
Hobo::Config.run do |config|
|
|
|
|
# default config goes here
|
2010-02-03 08:17:52 +00:00
|
|
|
config.ssh.username = "hobo"
|
|
|
|
config.ssh.password = "hobo"
|
2010-02-02 06:14:40 +00:00
|
|
|
config.ssh.host = "localhost"
|
2010-02-03 08:02:12 +00:00
|
|
|
config.ssh.forwarded_port_key = "ssh"
|
2010-02-02 06:14:40 +00:00
|
|
|
config.ssh.max_tries = 10
|
|
|
|
|
|
|
|
config.dotfile_name = ".hobo"
|
|
|
|
|
|
|
|
config.vm.base = "~/.hobo/base/base.ovf"
|
|
|
|
config.vm.base_mac = "0800279C2E41"
|
2010-02-06 08:01:47 +00:00
|
|
|
config.vm.project_directory = "/hobo"
|
2010-02-03 08:02:12 +00:00
|
|
|
config.vm.forward_port("ssh", 22, 2222)
|
2010-02-09 08:31:52 +00:00
|
|
|
|
|
|
|
config.chef.cookbooks_path = "cookbooks"
|
|
|
|
config.chef.provisioning_path = "/tmp/hobo-chef"
|
2010-02-02 06:14:40 +00:00
|
|
|
end
|