Include synced folder cleanup action within hyperv provider

This commit is contained in:
Chris Roberts 2018-01-03 10:29:45 -08:00
parent abf74e3757
commit 572f341697
1 changed files with 2 additions and 0 deletions

View File

@ -41,6 +41,7 @@ module VagrantPlugins
b2.use ProvisionerCleanup, :before b2.use ProvisionerCleanup, :before
b2.use StopInstance b2.use StopInstance
b2.use DeleteVM b2.use DeleteVM
b2.use SyncedFolderCleanup
end end
end end
end end
@ -144,6 +145,7 @@ module VagrantPlugins
b2.use StartInstance b2.use StartInstance
b2.use WaitForIPAddress b2.use WaitForIPAddress
b2.use WaitForCommunicator, [:running] b2.use WaitForCommunicator, [:running]
b2.use SyncedFolderCleanup
b2.use SyncedFolders b2.use SyncedFolders
b2.use SetHostname b2.use SetHostname
end end