From b672bafee80e0a3f029ae3b02193b75edc04b0cf Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Tue, 14 Aug 2018 09:27:32 -0700 Subject: Start work on the 14.4 release notes Document the new resources and the improvements to existing resources. Signed-off-by: Tim Smith --- lib/chef/resource/cron_access.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') 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| -- cgit v1.2.1