From 9dd87b289e4ce93285cda586dd490603491724f9 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 8 Jul 2015 17:45:32 -0600 Subject: [PATCH] providers/docker: validate config after HandleBox [GH-5667] --- plugins/providers/docker/action.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/providers/docker/action.rb b/plugins/providers/docker/action.rb index c0f1e99fb..b41d39810 100644 --- a/plugins/providers/docker/action.rb +++ b/plugins/providers/docker/action.rb @@ -20,14 +20,13 @@ module VagrantPlugins # container, configuring metadata, and booting. def self.action_up Vagrant::Action::Builder.new.tap do |b| - b.use ConfigValidate - b.use Call, IsState, :not_created do |env, b2| if env[:result] b2.use HandleBox end end + b.use ConfigValidate b.use HostMachine # Yeah, this is supposed to be here twice (once more above). This