Sha256: d4856232a2d8f3ec75a878262eca313ba36fea3fdb360060bc4b3024d6eda076
Contents?: true
Size: 529 Bytes
Versions: 40
Compression:
Stored size: 529 Bytes
Contents
module Vagrant module Action module VM class MatchMACAddress def initialize(app, env) @app = app end def call(env) raise Errors::VMBaseMacNotSpecified if !env[:vm].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[:vm].driver.set_mac_address(env[:vm].config.vm.base_mac) @app.call(env) end end end end end
Version data entries
40 entries across 40 versions & 6 rubygems