diff options
-rw-r--r-- | lib/chef/resource/chef_client_launchd.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/chef/resource/chef_client_launchd.rb b/lib/chef/resource/chef_client_launchd.rb index 0500991edc..3d335e80ee 100644 --- a/lib/chef/resource/chef_client_launchd.rb +++ b/lib/chef/resource/chef_client_launchd.rb @@ -89,8 +89,7 @@ class Chef property :nice, [Integer, String], description: "The process priority to run the #{Chef::Dist::CLIENT} process at. A value of -20 is the highest priority and 19 is the lowest priority.", coerce: proc { |x| Integer(x) }, - callbacks: { "should be a Integer between -20 and 19" => proc { |v| v >= -20 && v <= 19 } }, - default: 0 + callbacks: { "should be a Integer between -20 and 19" => proc { |v| v >= -20 && v <= 19 } } property :low_priority_io, [true, false], description: "Run the #{Chef::Dist::CLIENT} process with low priority disk IO", |