summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-08-14 09:27:32 -0700
committerTim Smith <tsmith@chef.io>2018-08-14 09:27:32 -0700
commitb672bafee80e0a3f029ae3b02193b75edc04b0cf (patch)
tree285077ca24f0fc9aabbfaeb23710f1bdb6dbfed6 /lib
parent5fb14ff1adbd1700da1b14ced8ec8c00752f4299 (diff)
downloadchef-b672bafee80e0a3f029ae3b02193b75edc04b0cf.tar.gz
Start work on the 14.4 release notes
Document the new resources and the improvements to existing resources. Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib')
-rw-r--r--lib/chef/resource/cron_access.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/resource/cron_access.rb b/lib/chef/resource/cron_access.rb
index dbcc0709b7..b6b822ba40 100644
--- a/lib/chef/resource/cron_access.rb
+++ b/lib/chef/resource/cron_access.rb
@@ -35,7 +35,7 @@ class Chef
name_property: true
action :allow do
- description "Add the user to the cron.deny file."
+ description "Add the user to the cron.allow file."
with_run_context :root do
edit_resource(:template, "/etc/cron.allow") do |new_resource|
@@ -51,7 +51,7 @@ class Chef
end
action :deny do
- description "Add the user to the cron.allow file."
+ description "Add the user to the cron.deny file."
with_run_context :root do
edit_resource(:template, "/etc/cron.deny") do |new_resource|