Increase default max tries for SSH and lower the timeout

This commit is contained in:
Mitchell Hashimoto 2011-11-26 09:29:39 -07:00
parent 1155983307
commit c1db76b3f8
1 changed files with 2 additions and 2 deletions

View File

@ -8,8 +8,8 @@ Vagrant::Config.run do |config|
config.ssh.host = "127.0.0.1"
config.ssh.forwarded_port_key = "ssh"
config.ssh.forwarded_port_destination = 22
config.ssh.max_tries = 10
config.ssh.timeout = 30
config.ssh.max_tries = 100
config.ssh.timeout = 7
config.ssh.private_key_path = File.expand_path("keys/vagrant", Vagrant.source_root)
config.ssh.forward_agent = false
config.ssh.forward_x11 = false