Enable provisionser cleanup hooks to be actioned

Call the builtin ProvisionserCleanup action when destroying machines.
Part of vagrant since version 1.3.0.
This commit is contained in:
Darragh Bailey 2015-07-31 20:47:20 +01:00
parent a46545e66c
commit edf730e9f5

View File

@ -172,6 +172,7 @@ module VagrantPlugins
# b2.use PruneNFSExports
b2.use DestroyDomain
b2.use DestroyNetworks
b2.use ProvisionerCleanup
end
end
end
@ -370,6 +371,7 @@ module VagrantPlugins
autoload :HandleBox, 'vagrant/action/builtin/handle_box'
autoload :SyncedFolders, 'vagrant/action/builtin/synced_folders'
autoload :SyncedFolderCleanup, 'vagrant/action/builtin/synced_folder_cleanup'
autoload :ProvisionerCleanup, 'vagrant/action/builtin/provisioner_cleanup'
end
end
end