X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/78a1ea04a1b870bf93856e3bca38e9e6287b9478..098634e073c80dfde4038715bc683985b18c5184:/cookbooks/chef/templates/default/client.rb.erb diff --git a/cookbooks/chef/templates/default/client.rb.erb b/cookbooks/chef/templates/default/client.rb.erb index 92c96feb3..dff9d19ed 100644 --- a/cookbooks/chef/templates/default/client.rb.erb +++ b/cookbooks/chef/templates/default/client.rb.erb @@ -29,23 +29,15 @@ chef_server_url "https://chef.openstreetmap.org" Ohai::Config[:plugin_path] << "<%= node[:ohai][:plugin_dir] %>" -begin +# Load supporting code for report handlers - # Load supporting code for report handlers +require "/etc/chef/report" - require "/etc/chef/report" +# Create report handler - # Create report handler +email_handler = Chef::Handler::Email.new(:to => "tom@compton.nu") - email_handler = Chef::Handler::Email.new(:to => "tom@compton.nu") +# Configure report handlers - # Configure report handlers - - exception_handlers << email_handler - report_handlers << email_handler - -rescue - - # Ignore errors in case required gems not installed yet - -end +exception_handlers << email_handler +report_handlers << email_handler