Sha256: 01b6aea11a81156b025c37fe809ef4053db1f4e6bf2904d87e8f1a52e870478b
Contents?: true
Size: 463 Bytes
Versions: 58
Compression:
Stored size: 463 Bytes
Contents
module VagrantPlugins module HyperV module Action class NetSetMac def initialize(app, env) @app = app end def call(env) mac = env[:machine].provider_config.mac if mac env[:ui].info("[Settings] [Network Adapter] Setting MAC address to: #{mac}") env[:machine].provider.driver.net_set_mac(mac) end @app.call(env) end end end end end
Version data entries
58 entries across 54 versions & 6 rubygems