From 5c18555f3d43cdcd0411e492cebebc4f4a7eb6e4 Mon Sep 17 00:00:00 2001 From: Jay Mundrawala Date: Tue, 28 Oct 2014 09:47:30 -0700 Subject: Disable eventlogger on win2k3 --- lib/chef/config.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/chef/config.rb b/lib/chef/config.rb index d033a2981b..dc04026acb 100644 --- a/lib/chef/config.rb +++ b/lib/chef/config.rb @@ -458,7 +458,7 @@ class Chef default :disable_event_loggers, false default :event_loggers do evt_loggers = [] - if Chef::Platform::windows? + if Chef::Platform::windows? and not Chef::Platform::windows_server_2003? evt_loggers << :win_evt end evt_loggers -- cgit v1.2.1