X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/ceb801ff008b6125d3a359635295f5091088f520..4ed87e86c638523d093bc97b32715c4c6a41a70d:/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 dff9d19ed..796b276c5 100644 --- a/cookbooks/chef/templates/default/client.rb.erb +++ b/cookbooks/chef/templates/default/client.rb.erb @@ -9,6 +9,10 @@ Encoding.default_external = Encoding::UTF_8 +# Accept the license + +chef_license "accept" + # Log at level info log_level :info @@ -17,17 +21,25 @@ log_level :info log_location "/var/log/chef/client.log" +# Set the node name + +node_name "<%= node.name %>" + # Verify SSL certificates 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] %>" + +# Enable some optional ohai plugins + +ohai.optional_plugins = %w[Passwd] # Load supporting code for report handlers @@ -35,9 +47,9 @@ require "/etc/chef/report" # Create report handler -email_handler = Chef::Handler::Email.new(:to => "tom@compton.nu") +email_handler = Chef::Handler::Email.new(:to => ["tom@compton.nu", "openstreetmap@firefishy.com"]) # Configure report handlers -exception_handlers << email_handler -report_handlers << email_handler +exception_handlers.delete_if { |h| h.is_a?(Chef::Handler::Email) } << email_handler +report_handlers.delete_if { |h| h.is_a?(Chef::Handler::Email) } << email_handler