From 251cafe5e4eec2b8214fc59a72537d8b28d280f7 Mon Sep 17 00:00:00 2001 From: Mike Rowehl Date: Fri, 13 Sep 2013 09:34:40 -0700 Subject: [PATCH] Call the rest of the middleware stack all the time. --- .../virtualbox/action/destroy_unused_network_interfaces.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb b/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb index c703790e0..6610679d1 100644 --- a/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb +++ b/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb @@ -13,8 +13,8 @@ module VagrantPlugins if env[:machine].provider_config.destroy_unused_network_interfaces @logger.info("Destroying unused network interfaces...") env[:machine].provider.driver.delete_unused_host_only_networks - @app.call(env) end + @app.call(env) end end end