]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/chef/templates/default/client.rb.erb
Disable chef exception handler
[chef.git] / cookbooks / chef / templates / default / client.rb.erb
index e4bba9250e94464f5b536a62df40d824f5d7c2fa..5c9d888f581c7548a22e7a1f6e82d376a318df13 100644 (file)
@@ -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
@@ -21,23 +17,27 @@ log_level :info
 
 log_location "/var/log/chef/client.log"
 
-# Don't verify SSL certificates
+# Verify SSL certificates
 
-ssl_verify_mode :verify_none
+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