summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2020-05-28 16:58:41 -0700
committerGitHub <noreply@github.com>2020-05-28 16:58:41 -0700
commitdfa223b625d1c7fd7793e800a6d216652c479608 (patch)
tree074280f0fbe0faf025b571253245de5e3e9e9f22
parentb15f37656b3993b77a65c8cfbd7e6300a9b3e604 (diff)
parent287a9624580948fc0728bff3b115836008f1c5a4 (diff)
downloadchef-dfa223b625d1c7fd7793e800a6d216652c479608.tar.gz
Merge pull request #9929 from chef/fix-chefstyle
Fix chefstyle violations.
-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 51348c2ada..ffb141ebd3 100644
--- a/lib/chef/resource/cron_access.rb
+++ b/lib/chef/resource/cron_access.rb
@@ -59,10 +59,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."