From 71c65e68fdc54f5fd92078bf2f55604444283d24 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 4 Feb 2013 11:45:22 -0800 Subject: [PATCH] Increase the default SSH timeout --- config/default.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/default.rb b/config/default.rb index cddc0fe65..ae97fab94 100644 --- a/config/default.rb +++ b/config/default.rb @@ -5,7 +5,7 @@ Vagrant.configure("2") do |config| config.ssh.username = "vagrant" config.ssh.guest_port = 22 config.ssh.max_tries = 100 - config.ssh.timeout = 10 + config.ssh.timeout = 30 config.ssh.forward_agent = false config.ssh.forward_x11 = false config.ssh.shell = "bash -l"