Sha256: 5bbe591129622bb2ff4a43cbc06d1f1be4f16fc5e7344f785d92bc28c4da225e

Contents?: true

Size: 871 Bytes

Versions: 13

Compression:

Stored size: 871 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(8).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

13 entries across 13 versions & 5 rubygems

Version Path
vagrant-shell-0.2.9 demo/templates/vendor/bundle/ruby/1.9.1/gems/tnargav-1.2.2/plugins/providers/virtualbox/action/clear_network_interfaces.rb
tnargav-1.2.3 plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-shell-0.2.8 demo/templates/vendor/bundle/ruby/1.9.1/gems/tnargav-1.2.2/plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-shell-0.2.6 vendor/bundle/gems/tnargav-1.2.2/plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-shell-0.2.5 vendor/bundle/gems/tnargav-1.2.2/plugins/providers/virtualbox/action/clear_network_interfaces.rb
tnargav-1.2.2 plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrantup-1.1.3 plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrantup-1.1.2 plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrantup-1.1.1 plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrantup-1.1.0 plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrantup-1.1.4 plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-actionio-0.0.9 vendor/bundle/bundler/gems/vagrant-c74251a1d9c0/plugins/providers/virtualbox/action/clear_network_interfaces.rb
vagrant-lxc-0.0.1 vendor/vagrant/plugins/providers/virtualbox/action/clear_network_interfaces.rb