From d09443223816d665819d65c80c8e605f169cf543 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 6 Jan 2012 18:03:21 -0800 Subject: [PATCH] No longer require `forwarded_port_key` setting, its gone --- lib/vagrant/config/ssh.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/config/ssh.rb b/lib/vagrant/config/ssh.rb index dd5b7276a..9f9287cc9 100644 --- a/lib/vagrant/config/ssh.rb +++ b/lib/vagrant/config/ssh.rb @@ -42,7 +42,7 @@ and use it. end def validate(env, errors) - [:username, :host, :forwarded_port_key, :max_tries, :timeout].each do |field| + [:username, :host, :max_tries, :timeout].each do |field| errors.add(I18n.t("vagrant.config.common.error_empty", :field => field)) if !instance_variable_get("@#{field}".to_sym) end