Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

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