Encoding.default_external = Encoding::UTF_8
-# Load supporting code for report handlers
-
-require "/etc/chef/report"
-
# Log at level info
log_level :info
chef_server_url "https://chef.openstreetmap.org"
-# Create report handler
+# Make our plugins visible to ohai
-email_handler = Chef::Handler::Email.new(:to => "tom@compton.nu")
+Ohai::Config[:plugin_path] << "<%= node[:ohai][:plugin_dir] %>"
-# Configure report handlers
+begin
-exception_handlers << email_handler
-report_handlers << email_handler
+ # Load supporting code for report handlers
-# Make our plugins visible to ohai
+ require "/etc/chef/report"
-Ohai::Config[:plugin_path] << "<%= node[:ohai][:plugin_dir] %>"
+ # Create report handler
+
+ email_handler = Chef::Handler::Email.new(:to => "tom@compton.nu")
+
+ # Configure report handlers
+
+ exception_handlers << email_handler
+ report_handlers << email_handler
+
+rescue
+
+ # Ignore errors in case required gems not installed yet
+
+end