From bed653eeb44b495c432c5e07c4f6f638661447dc Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Mon, 25 Feb 2019 15:30:04 -0800 Subject: [PATCH] Autoload and use Network action on up --- plugins/providers/docker/action.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/providers/docker/action.rb b/plugins/providers/docker/action.rb index f423f6e65..0b1692b72 100644 --- a/plugins/providers/docker/action.rb +++ b/plugins/providers/docker/action.rb @@ -28,6 +28,7 @@ module VagrantPlugins b.use ConfigValidate b.use HostMachine + b.use Network # Yeah, this is supposed to be here twice (once more above). This # catches the case when the container was supposed to be created, @@ -311,6 +312,7 @@ module VagrantPlugins autoload :Pull, action_root.join("pull") autoload :PrepareSSH, action_root.join("prepare_ssh") autoload :Stop, action_root.join("stop") + autoload :Network, action_root.join("network") autoload :PrepareNFSValidIds, action_root.join("prepare_nfs_valid_ids") autoload :PrepareNFSSettings, action_root.join("prepare_nfs_settings") autoload :Start, action_root.join("start")