X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/239e985785bf89571d6c0e6a39473861cd065d2a..204605749875101d3316aa94917d0a4b6c055fb3:/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 6c9113968..5c9d888f5 100644 --- a/cookbooks/chef/templates/default/client.rb.erb +++ b/cookbooks/chef/templates/default/client.rb.erb @@ -9,10 +9,6 @@ Encoding.default_external = Encoding::UTF_8 -# Load supporting code for report handlers - -require "/etc/chef/report" - # Log at level info log_level :info @@ -27,17 +23,21 @@ ssl_verify_mode :verify_peer # Set the URL for the chef server -chef_server_url "https://chef.openstreetmap.org" +chef_server_url "https://chef.openstreetmap.org/organizations/openstreetmap" -# Create report handler +# Make our plugins visible to ohai -email_handler = Chef::Handler::Email.new(:to => "tom@compton.nu") +ohai.plugin_path << "<%= node[:ohai][:plugin_dir] %>" -# Configure report handlers +# Load supporting code for report handlers -exception_handlers << email_handler -report_handlers << email_handler +require "/etc/chef/report" -# Make our plugins visible to ohai +# Create report handler + +email_handler = Chef::Handler::Email.new(:to => ["tom@compton.nu", "openstreetmap@firefishy.com"]) + +# Configure report handlers -Ohai::Config[:plugin_path] << "/etc/chef/ohai" +#exception_handlers << email_handler +#report_handlers << email_handler