summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Seeger <mseeger@fb.com>2020-01-17 14:41:07 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2020-01-22 11:58:06 -0800
commitdcf0ec97c64f12b2ac240240658ff4dd29bf565c (patch)
tree698c5835656a74988bfc17617440c270302cdf54
parent3c692f4dfa6f61d2bcd8f7c9ba5b6f188559af11 (diff)
downloadchef-dcf0ec97c64f12b2ac240240658ff4dd29bf565c.tar.gz
launchd: Fix capitalization of HardResourceLimits
Seems to have been a typo. You can check e.g. https://developer.apple.com/library/archive/documentation/MacOSX/Conceptual/BPSystemStartup/Chapters/CreatingLaunchdJobs.html or https://www.launchd.info/ for the proper capitalization. Signed-off-by: Marc Seeger <mseeger@fb.com>
-rw-r--r--lib/chef/provider/launchd.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider/launchd.rb b/lib/chef/provider/launchd.rb
index 4f20a417a6..16fe34f6ea 100644
--- a/lib/chef/provider/launchd.rb
+++ b/lib/chef/provider/launchd.rb
@@ -194,7 +194,7 @@ class Chef
"environment_variables" => "EnvironmentVariables",
"exit_timeout" => "ExitTimeout",
"ld_group" => "GroupName",
- "hard_resource_limits" => "HardreSourceLimits",
+ "hard_resource_limits" => "HardResourceLimits",
"inetd_compatibility" => "inetdCompatibility",
"init_groups" => "InitGroups",
"keep_alive" => "KeepAlive",