summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-08-13 11:11:57 -0700
committerTim Smith <tsmith@chef.io>2018-08-13 11:11:57 -0700
commit5d1938b3f00f726e0ae8c4bf1f460ac663f13c56 (patch)
tree38621358acc1c99117b3ae22b6868ff0b05fd817
parent12a28933b46b83e6745a873d174a1fbe9e46f13d (diff)
downloadchef-5d1938b3f00f726e0ae8c4bf1f460ac663f13c56.tar.gz
Add descriptions and update the Chef version to ship in
Signed-off-by: Tim Smith <tsmith@chef.io>
-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.",