fix run_provisioner

This commit is contained in:
dima
2013-04-18 13:17:12 +02:00
parent c8c34d8e20
commit 2c8d3b02be

View File

@@ -6,7 +6,10 @@ module VagrantPlugins
# This is the same as the builtin provision except it times the # This is the same as the builtin provision except it times the
# provisioner runs. # provisioner runs.
class TimedProvision < Vagrant::Action::Builtin::Provision class TimedProvision < Vagrant::Action::Builtin::Provision
def run_provisioner(env, p) def run_provisioner(env, name, p)
env[:ui].info(I18n.t("vagrant.actions.vm.provision.beginning",
:provisioner => name))
timer = Util::Timer.time do timer = Util::Timer.time do
super super
end end