From c0fabbe2bd3100251399d0c64bafb36ec1b3d070 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 22 Dec 2011 21:50:20 -0800 Subject: [PATCH] Fix interrupted? call in boot --- lib/vagrant/action/vm/boot.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/action/vm/boot.rb b/lib/vagrant/action/vm/boot.rb index 283f5125f..4dab62a1d 100644 --- a/lib/vagrant/action/vm/boot.rb +++ b/lib/vagrant/action/vm/boot.rb @@ -33,7 +33,7 @@ module Vagrant # Return true so that the vm_failed_to_boot error doesn't # get shown - return true if @env.interrupted? + return true if @env[:interrupted] sleep 2 if !@env["vagrant.test"] end