From a45e4508c8c989d0a9fd2764f8102d67026c6ba1 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(-) 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