Class: Vagrant::Action::VM::ClearNetworkInterfaces
- Inherits:
-
Object
- Object
- Vagrant::Action::VM::ClearNetworkInterfaces
- Defined in:
- lib/vagrant/action/vm/clear_network_interfaces.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, env) ⇒ ClearNetworkInterfaces
constructor
A new instance of ClearNetworkInterfaces.
Constructor Details
#initialize(app, env) ⇒ ClearNetworkInterfaces
Returns a new instance of ClearNetworkInterfaces.
5 6 7 |
# File 'lib/vagrant/action/vm/clear_network_interfaces.rb', line 5 def initialize(app, env) @app = app end |
Instance Method Details
#call(env) ⇒ Object
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/vagrant/action/vm/clear_network_interfaces.rb', line 9 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[:vm].driver.enable_adapters(adapters) @app.call(env) end |