Move MAC address UI output into the customize block

This commit is contained in:
Mitchell Hashimoto 2011-07-08 00:56:52 -07:00
parent f3c44fba2f
commit b876d9ed1d
1 changed files with 1 additions and 1 deletions

View File

@ -9,8 +9,8 @@ module Vagrant
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["config"].vm.customize do |vm|
env.ui.info I18n.t("vagrant.actions.vm.match_mac.matching")
vm.network_adapters.first.mac_address = env["config"].vm.base_mac
end