X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/f1e386a2785e80de0e0626ff261d95869c184861..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 52cbbdf01..5c9d888f5 100644 --- a/cookbooks/chef/templates/default/client.rb.erb +++ b/cookbooks/chef/templates/default/client.rb.erb @@ -23,29 +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" # Make our plugins visible to ohai -Ohai::Config[:plugin_path] << "<%= node[:ohai][:plugin_dir] %>" +ohai.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", "openstreetmap@firefishy.com"]) - 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 LoadError - - # Ignore errors in case required gems not installed yet - -end +#exception_handlers << email_handler +#report_handlers << email_handler