Sha256: e564ef63217774aefb9bdd36f0f0a137d527c2b9cdce81e9da4a8a0e98211944

Contents?: true

Size: 914 Bytes

Versions: 63

Compression:

Stored size: 914 Bytes

Contents

module VagrantPlugins
  module ProviderVirtualBox
    module Action
      class ClearNetworkInterfaces
        def initialize(app, env)
          @app = app
        end

        def call(env)
          # Create the adapters array to make all adapters nothing.
          # We do adapters 2 to 8 because that is every built-in adapter
          # excluding the NAT adapter on port 1 which Vagrant always
          # expects to exist.
          adapters = []
          2.upto(env[:machine].provider.driver.max_network_adapters).each do |i|
            adapters << {
              adapter: i,
              type:    :none
            }
          end

          # "Enable" all the adapters we setup.
          env[:ui].info I18n.t("vagrant.actions.vm.clear_network_interfaces.deleting")
          env[:machine].provider.driver.enable_adapters(adapters)

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

Version data entries

63 entries across 56 versions & 8 rubygems

Version Path
vagrant-unbundled-1.9.8.1 plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-unbundled-1.9.7.1 plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-aws-mkubenka-0.7.2.pre.14 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-aws-mkubenka-0.7.2.pre.11 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-aws-mkubenka-0.7.2.pre.10 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-aws-mkubenka-0.7.2.pre.9 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-unbundled-1.9.5.1 plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-unbundled-1.9.1.1 plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-unbundled-1.8.5.2 plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-unbundled-1.8.5.1 plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-unbundled-1.8.4.2 plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-unbundled-1.8.4.1 plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-unbundled-1.8.1.2 plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-unbundled-1.8.1.1 plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-b421af58e8b3/plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-309e896975d1/plugins/providers/virtualbox/action/clear_network_interfaces.rb