From d9f5cbce3e6aca628266bd23b5147f08180c3d67 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 7 Jan 2012 11:57:46 -0800 Subject: [PATCH] Initialize the connection ivar for SSH --- lib/vagrant/communication/ssh.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/vagrant/communication/ssh.rb b/lib/vagrant/communication/ssh.rb index 34623cef1..9797ab5ea 100644 --- a/lib/vagrant/communication/ssh.rb +++ b/lib/vagrant/communication/ssh.rb @@ -17,6 +17,7 @@ module Vagrant def initialize(vm) @vm = vm @logger = Log4r::Logger.new("vagrant::communication::ssh") + @connection = nil end def ready?