Autoload and use Network action on up

This commit is contained in:
Brian Cain 2019-02-25 15:30:04 -08:00
parent 67ea15126d
commit bed653eeb4
No known key found for this signature in database
GPG Key ID: 9FC4639B2E4510A0
1 changed files with 2 additions and 0 deletions

View File

@ -28,6 +28,7 @@ module VagrantPlugins
b.use ConfigValidate b.use ConfigValidate
b.use HostMachine b.use HostMachine
b.use Network
# Yeah, this is supposed to be here twice (once more above). This # Yeah, this is supposed to be here twice (once more above). This
# catches the case when the container was supposed to be created, # catches the case when the container was supposed to be created,
@ -311,6 +312,7 @@ module VagrantPlugins
autoload :Pull, action_root.join("pull") autoload :Pull, action_root.join("pull")
autoload :PrepareSSH, action_root.join("prepare_ssh") autoload :PrepareSSH, action_root.join("prepare_ssh")
autoload :Stop, action_root.join("stop") autoload :Stop, action_root.join("stop")
autoload :Network, action_root.join("network")
autoload :PrepareNFSValidIds, action_root.join("prepare_nfs_valid_ids") autoload :PrepareNFSValidIds, action_root.join("prepare_nfs_valid_ids")
autoload :PrepareNFSSettings, action_root.join("prepare_nfs_settings") autoload :PrepareNFSSettings, action_root.join("prepare_nfs_settings")
autoload :Start, action_root.join("start") autoload :Start, action_root.join("start")