summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-06-23 09:20:07 -0700
committerTim Smith <tsmith84@gmail.com>2020-06-23 09:20:07 -0700
commit3f09022631ce031964500bec0093de8f3c4b9cc4 (patch)
tree948c140f1a1004c3a06e9ee2d38fc4f1f9b45e73
parent5224b2955cd9e7739a09c303ab665142a031d53f (diff)
downloadchef-3f09022631ce031964500bec0093de8f3c4b9cc4.tar.gz
Chefstyle fixes
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/resource/cron_access.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/chef/resource/cron_access.rb b/lib/chef/resource/cron_access.rb
index 58d046eee3..7ec5387c0c 100644
--- a/lib/chef/resource/cron_access.rb
+++ b/lib/chef/resource/cron_access.rb
@@ -55,10 +55,10 @@ class Chef
name_property: true
CRON_PATHS = {
- 'aix' => '/var/adm/cron',
- 'solaris' => '/etc/cron.d',
- 'default' => '/etc'
- }
+ "aix" => "/var/adm/cron",
+ "solaris" => "/etc/cron.d",
+ "default" => "/etc",
+ }.freeze
action :allow do
description "Add the user to the cron.allow file."