Sha256: b01d18abafa580c326ab691fa8b3e8a7b984869845d57b31c6550715344dc571

Contents?: true

Size: 610 Bytes

Versions: 69

Compression:

Stored size: 610 Bytes

Contents

require "log4r"

module VagrantPlugins
  module ProviderVirtualBox
    module Action
      class DestroyUnusedNetworkInterfaces
        def initialize(app, env)
          @app = app
          @logger = Log4r::Logger.new("vagrant::plugins::virtualbox::destroy_unused_netifs")
        end

        def call(env)
          if env[:machine].provider_config.destroy_unused_network_interfaces
            @logger.info("Destroying unused network interfaces...")
            env[:machine].provider.driver.delete_unused_host_only_networks
          end

          @app.call(env)
        end
      end
    end
  end
end

Version data entries

69 entries across 62 versions & 9 rubygems

Version Path
vagrant-unbundled-1.8.1.2 plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb
vagrant-unbundled-1.8.1.1 plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-1cf2a8db4ccb/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-b421af58e8b3/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-309e896975d1/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-272fb27e0536/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb
vagrant-tiktalik-0.0.3 vendor/bundle/ruby/2.0.0/bundler/gems/vagrant-1e28f1ac31e7/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb
tnargav-1.3.6 plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb
tnargav-1.3.3 plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb