diff --git a/lib/vagrant-libvirt/action.rb b/lib/vagrant-libvirt/action.rb index b254fa4..a104219 100644 --- a/lib/vagrant-libvirt/action.rb +++ b/lib/vagrant-libvirt/action.rb @@ -27,6 +27,7 @@ module VagrantPlugins b2.use CreateNetworks b2.use CreateNetworkInterfaces + b2.use PrepareNFSValidIds b2.use SyncedFolderCleanup b2.use SyncedFolders @@ -34,12 +35,15 @@ module VagrantPlugins b2.use StartDomain b2.use WaitTillUp + b2.use StartDomain + b2.use WaitTillUp + b2.use ForwardPorts - b2.use PrepareNFSSettings + # b2.use PrepareNFSSettings b2.use ShareFolders b2.use SetHostname # b2.use SyncFolders @@ -73,7 +77,6 @@ module VagrantPlugins # Ensure networks are created and active b3.use CreateNetworks - b3.use PrepareNFSValidIds b3.use SyncedFolderCleanup b3.use SyncedFolders @@ -88,7 +91,7 @@ module VagrantPlugins b3.use ForwardPorts - b3.use PrepareNFSSettings + # b3.use PrepareNFSSettings b3.use ShareFolders end @@ -153,7 +156,7 @@ module VagrantPlugins b2.use ConnectLibvirt b2.use ClearForwardedPorts - b2.use PruneNFSExports + # b2.use PruneNFSExports b2.use DestroyDomain b2.use DestroyNetworks end @@ -318,8 +321,11 @@ module VagrantPlugins autoload :MessageNotCreated, action_root.join('message_not_created') autoload :MessageNotRunning, action_root.join('message_not_running') autoload :MessageNotSuspended, action_root.join('message_not_suspended') + autoload :PrepareNFSSettings, action_root.join('prepare_nfs_settings') + autoload :PrepareNFSValidIds, action_root.join('prepare_nfs_valid_ids') autoload :PruneNFSExports, action_root.join('prune_nfs_exports') + autoload :ReadSSHInfo, action_root.join('read_ssh_info') autoload :ReadState, action_root.join('read_state') autoload :ResumeDomain, action_root.join('resume_domain') @@ -330,6 +336,7 @@ module VagrantPlugins autoload :StartDomain, action_root.join('start_domain') autoload :SuspendDomain, action_root.join('suspend_domain') autoload :TimedProvision, action_root.join('timed_provision') + autoload :WaitTillUp, action_root.join('wait_till_up') autoload :PrepareNFSValidIds, action_root.join('prepare_nfs_valid_ids')