diff --git a/CHANGELOG.md b/CHANGELOG.md index b7a56b6c0..b4ef935ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,8 @@ BUG FIXES: - hosts/arch: NFS exporting works properly, no exceptions. [GH-2161] - hosts/fedora: Fix host detection encoding issues. [GH-1977] - hosts/linux: Fix NFS export problems with `no_subtree_check`. [GH-2156] + - providers/virtualbox: Fix an issue where destroy middlewares weren't + being properly called. [GH-2200] ## 1.3.1 (September 6, 2013) diff --git a/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb b/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb index 6610679d1..31c34f2c8 100644 --- a/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb +++ b/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb @@ -14,6 +14,7 @@ module VagrantPlugins @logger.info("Destroying unused network interfaces...") env[:machine].provider.driver.delete_unused_host_only_networks end + @app.call(env) end end