Sha256: 98cbeed962745abd28efcc67bbaa534e8c8598f7e86ebe85056616e95d072896

Contents?: true

Size: 670 Bytes

Versions: 19

Compression:

Stored size: 670 Bytes

Contents

module Vagrant
  class Action
    module VM
      class MatchMACAddress
        def initialize(app, env)
          @app = app
        end

        def call(env)
          raise Errors::VMBaseMacNotSpecified if !env.env.config.vm.base_mac

          # Create the proc which we want to use to modify the virtual machine
          proc = lambda do |vm|
            env.ui.info I18n.t("vagrant.actions.vm.match_mac.matching")
            vm.network_adapters.first.mac_address = env["config"].vm.base_mac
          end

          # Add the proc to the modification chain
          env["vm.modify"].call(proc)

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

Version data entries

19 entries across 19 versions & 3 rubygems

Version Path
vagrantup-0.8.9 lib/vagrant/action/vm/match_mac_address.rb
vagrantup-0.8.8 lib/vagrant/action/vm/match_mac_address.rb
vagrantup-0.8.7 lib/vagrant/action/vm/match_mac_address.rb
vagrantup-0.8.6 lib/vagrant/action/vm/match_mac_address.rb
vagrantup-0.8.5 lib/vagrant/action/vm/match_mac_address.rb
vagrantup-0.8.4 lib/vagrant/action/vm/match_mac_address.rb
vagrantup-0.8.3 lib/vagrant/action/vm/match_mac_address.rb
vagrantup-0.8.2 lib/vagrant/action/vm/match_mac_address.rb
vagrantup-0.8.10 lib/vagrant/action/vm/match_mac_address.rb
vagrantup-0.8.1 lib/vagrant/action/vm/match_mac_address.rb
vagrantup-0.8.0 lib/vagrant/action/vm/match_mac_address.rb
vagrant-0.8.10 lib/vagrant/action/vm/match_mac_address.rb
vagrant-0.8.8 lib/vagrant/action/vm/match_mac_address.rb
vagrant-0.8.7 lib/vagrant/action/vm/match_mac_address.rb
rvagrant-0.8.7.dev lib/vagrant/action/vm/match_mac_address.rb
vagrant-0.8.6 lib/vagrant/action/vm/match_mac_address.rb
vagrant-0.8.5 lib/vagrant/action/vm/match_mac_address.rb
vagrant-0.8.2 lib/vagrant/action/vm/match_mac_address.rb
vagrant-0.8.1 lib/vagrant/action/vm/match_mac_address.rb