core: Fix action name used for ProvisionerRun

This commit is contained in:
Fabio Rehm 2013-10-21 20:50:13 -02:00
parent 2debce9dd9
commit a5c15fd230
1 changed files with 4 additions and 1 deletions

View File

@ -72,7 +72,10 @@ module Vagrant
:provisioner => name))
callable = Builder.new.tap { |b| b.use ProvisionerRun, p }
action_runner.run(callable, :action_name => name)
action_runner.run(callable,
:action_name => :provisioner_run,
:provider_name => name
)
end
def action_runner