Sha256: de289563ff6998e24ac80c217304c874abe2f588fc2c330d1fa0cde47e28c12e

Contents?: true

Size: 576 Bytes

Versions: 15

Compression:

Stored size: 576 Bytes

Contents

module VagrantPlugins
  module Parallels
    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

15 entries across 15 versions & 1 rubygems

Version Path
vagrant-parallels-0.1.2 lib/vagrant-parallels/action/match_mac_address.rb
vagrant-parallels-0.1.1 lib/vagrant-parallels/action/match_mac_address.rb
vagrant-parallels-0.1.0 lib/vagrant-parallels/action/match_mac_address.rb
vagrant-parallels-0.0.9 lib/vagrant-parallels/action/match_mac_address.rb
vagrant-parallels-0.0.8 lib/vagrant-parallels/action/match_mac_address.rb
vagrant-parallels-0.0.7 lib/vagrant-parallels/action/match_mac_address.rb
vagrant-parallels-0.0.6 lib/vagrant-parallels/action/match_mac_address.rb
vagrant-parallels-0.0.5 lib/vagrant-parallels/action/match_mac_address.rb
vagrant-parallels-0.0.4 lib/vagrant-parallels/action/match_mac_address.rb
vagrant-parallels-0.0.3 lib/vagrant-parallels/action/match_mac_address.rb
vagrant-parallels-0.0.1 lib/vagrant-parallels/action/match_mac_address.rb
vagrant-parallels-0.0.4.dev lib/vagrant-parallels/action/match_mac_address.rb
vagrant-parallels-0.0.3.dev lib/vagrant-parallels/action/match_mac_address.rb
vagrant-parallels-0.0.2.dev lib/vagrant-parallels/action/match_mac_address.rb
vagrant-parallels-0.0.1.dev lib/vagrant-parallels/action/match_mac_address.rb