Sha256: 8e9c87a6697a2949db8385166ee85614a331b6df2f611dcf6cf6811a68148bdd

Contents?: true

Size: 585 Bytes

Versions: 24

Compression:

Stored size: 585 Bytes

Contents

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

        def call(env)
          raise Vagrant::Errors::VMBaseMacNotSpecified if !env[:machine].config.vm.base_mac

          # Create the proc which we want to use to modify the virtual machine
          env[:ui].info I18n.t("vagrant.actions.vm.match_mac.matching")
          env[:machine].provider.driver.set_mac_address(env[:machine].config.vm.base_mac)

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

Version data entries

24 entries across 21 versions & 8 rubygems

Version Path
vagrantup-1.1.0 plugins/providers/virtualbox/action/match_mac_address.rb
vagrantup-1.1.4 plugins/providers/virtualbox/action/match_mac_address.rb
vagrant-actionio-0.0.9 vendor/bundle/bundler/gems/vagrant-c74251a1d9c0/plugins/providers/virtualbox/action/match_mac_address.rb
vagrant-lxc-0.0.1 vendor/vagrant/plugins/providers/virtualbox/action/match_mac_address.rb