diff options
author | Tim Smith <tsmith@chef.io> | 2018-08-20 10:43:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-20 10:43:56 -0700 |
commit | a67a82745ac1a72df21d1b6145374c3c19ef64a3 (patch) | |
tree | b17b39c2b2793dce3fd48e2d28e7a619517d72bf /lib | |
parent | 6abd196f3482c7ecc8b587124a6cb7238a7fd2dc (diff) | |
parent | b672bafee80e0a3f029ae3b02193b75edc04b0cf (diff) | |
download | chef-a67a82745ac1a72df21d1b6145374c3c19ef64a3.tar.gz |
Merge pull request #7545 from chef/release_notes
Start work on the 14.4 release notes
Diffstat (limited to 'lib')
-rw-r--r-- | lib/chef/resource/cron_access.rb | 4 |
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| |