chef-handler-updated-resources Handler
A simple Chef Report Handler to display resources that were updated at the end of the Chef run.
I don't maintain this anymore.
Install & Usage Instructions
Manual
Install the gem
gem install chef-handler-updated-resources
Add to /etc/chef/client.rb
or /etc/chef/solo.rb
:
require 'chef/handler/updated_resources' report_handlers << SimpleReport::UpdatedResources.new exception_handlers << SimpleReport::UpdatedResources.new
With Chef!
I haven't tested this with the chef_handler
cookbook, but I would test an approach like this:
Create a dependency in your cookbook on the chef_handler
cookbook, then in a recipe:
chef_handler 'SimpleReport::UpdatedResources' do source 'chef/handler/updated_resources' supports :exception => true action :enable end
If you get a working solution, please open an issue against the repository