summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/chef/resource/cron_access.rb4
-rw-r--r--lib/chef/resource/cron_d.rb4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/chef/resource/cron_access.rb b/lib/chef/resource/cron_access.rb
index b89cf8e265..dbcc0709b7 100644
--- a/lib/chef/resource/cron_access.rb
+++ b/lib/chef/resource/cron_access.rb
@@ -27,8 +27,8 @@ class Chef
resource_name :cron_access
provides(:cron_manage) # legacy name @todo in Chef 15 we should { true } this so it wins over the cookbook
- introduced "14.3"
- description ""
+ introduced "14.4"
+ description "Use the cron_access resource to manage the /etc/cron.allow and /etc/cron.deny files."
property :user, String,
description: "The user to allow or deny. If not provided we'll use the resource name.",
diff --git a/lib/chef/resource/cron_d.rb b/lib/chef/resource/cron_d.rb
index f3b102b2b3..f8f26290c9 100644
--- a/lib/chef/resource/cron_d.rb
+++ b/lib/chef/resource/cron_d.rb
@@ -24,8 +24,8 @@ class Chef
preview_resource true
resource_name :cron_d
- introduced "14.3"
- description ""
+ introduced "14.4"
+ description "Use the cron_d resource to manage cron definitions in /etc/cron.d. This is similar to the 'cron' resource, but it does not use the monolithic /etc/crontab file."
property :cron_name, String,
description: "Set the name of the cron job. If this isn't specified we'll use the resource name.",