summaryrefslogtreecommitdiff
path: root/lib/chef/event_dispatch
diff options
context:
space:
mode:
authorNoah Kantrowitz <noah@coderanger.net>2016-09-02 18:14:40 -0700
committerNoah Kantrowitz <noah@coderanger.net>2016-09-02 18:38:59 -0700
commit1c990a11ebe360f5e85ac13626ce1e09e295f919 (patch)
treeba08b180ba24e1154e21eb3c4e0a12df642b4f46 /lib/chef/event_dispatch
parentcc96f2fc1e907c95778bb91e9ff2168a05e43656 (diff)
downloadchef-1c990a11ebe360f5e85ac13626ce1e09e295f919.tar.gz
Hook up the recipe_file_loaded event which was defined but not actually called.
This also extends two of the recipe events to get the recipe name in addition to the path because that's usually useful for display. These arguments are both added at the end so the auto-magic argument trimmer will keep backwards compat. Signed-off-by: Noah Kantrowitz <noah@coderanger.net>
Diffstat (limited to 'lib/chef/event_dispatch')
-rw-r--r--lib/chef/event_dispatch/base.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/event_dispatch/base.rb b/lib/chef/event_dispatch/base.rb
index 6c6b2fa3bb..04c960c7af 100644
--- a/lib/chef/event_dispatch/base.rb
+++ b/lib/chef/event_dispatch/base.rb
@@ -232,11 +232,11 @@ class Chef
end
# Called after the recipe has been loaded
- def recipe_file_loaded(path)
+ def recipe_file_loaded(path, recipe)
end
# Called after a recipe file fails to load
- def recipe_file_load_failed(path, exception)
+ def recipe_file_load_failed(path, exception, recipe)
end
# Called when a recipe cannot be resolved