summaryrefslogtreecommitdiff
path: root/lib/chef/resource/chef_client_cron.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/resource/chef_client_cron.rb')
-rw-r--r--lib/chef/resource/chef_client_cron.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/resource/chef_client_cron.rb b/lib/chef/resource/chef_client_cron.rb
index 222b4043bb..dc6c2cbebd 100644
--- a/lib/chef/resource/chef_client_cron.rb
+++ b/lib/chef/resource/chef_client_cron.rb
@@ -131,11 +131,11 @@ class Chef
description: "The path to the #{ChefUtils::Dist::Infra::CLIENT} binary."
property :daemon_options, Array,
- default: lazy { [] }, default_description: "Empty Array",
+ default: [],
description: "An array of options to pass to the #{ChefUtils::Dist::Infra::CLIENT} command."
property :environment, Hash,
- default: lazy { {} }, default_description: "Empty Hash",
+ default: {},
description: "A Hash containing additional arbitrary environment variables under which the cron job will be run in the form of `({'ENV_VARIABLE' => 'VALUE'})`."
property :nice, [Integer, String],