log_location "/var/log/chef/client.log"
+# Set the node name
+
+node_name "<%= node.name %>"
+
# Verify SSL certificates
ssl_verify_mode :verify_peer
# 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
# 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