From cdfbe4cc311b0afb64ffdfe9a3ddc7bd4049980c Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 28 Aug 2011 20:35:45 -0700 Subject: [PATCH] `vagrant up` on created machines check for inaccessible machines --- lib/vagrant/vm.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/vagrant/vm.rb b/lib/vagrant/vm.rb index 21da2c898..867564802 100644 --- a/lib/vagrant/vm.rb +++ b/lib/vagrant/vm.rb @@ -141,6 +141,7 @@ module Vagrant end def start(options=nil) + raise Errors::VMInaccessible if !@vm.accessible? return if @vm.running? return resume if @vm.saved?