lib/vagrant/action/vm/match_mac_address.rb in vagrantup-0.6.4 vs lib/vagrant/action/vm/match_mac_address.rb in vagrantup-0.6.5
- old
+ new
@@ -5,9 +5,11 @@
def initialize(app, env)
@app = app
end
def call(env)
+ raise Errors::VMBaseMacNotSpecified if !env.env.config.vm.base_mac
+
env.ui.info I18n.t("vagrant.actions.vm.match_mac.matching")
env["vm"].vm.network_adapters.first.mac_address = env.env.config.vm.base_mac
env["vm"].vm.save
@app.call(env)