diff options
author | Erik Gomez <e@eriknicolasgomez.com> | 2016-08-08 16:48:11 -0700 |
---|---|---|
committer | Erik Gomez <e@eriknicolasgomez.com> | 2016-08-08 16:48:11 -0700 |
commit | e2c8036e0ca868cd4126fe36533f1c1ad69d3cf0 (patch) | |
tree | b3aa4c6809a1d207cf6e4c392604540a0696562b /lib/chef/resource | |
parent | e4f1d77c05b3170a1ae219f6e26d2bed6a89f4b7 (diff) | |
download | chef-e2c8036e0ca868cd4126fe36533f1c1ad69d3cf0.tar.gz |
Add Hash type to launchd:keep_alive
Diffstat (limited to 'lib/chef/resource')
-rw-r--r-- | lib/chef/resource/launchd.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/launchd.rb b/lib/chef/resource/launchd.rb index f3c378a6a8..8dca90ef0e 100644 --- a/lib/chef/resource/launchd.rb +++ b/lib/chef/resource/launchd.rb @@ -68,7 +68,7 @@ class Chef property :hard_resource_limits, Hash property :inetd_compatibility, Hash property :init_groups, [ TrueClass, FalseClass ] - property :keep_alive, [ TrueClass, FalseClass ] + property :keep_alive, [ TrueClass, FalseClass, Hash ] property :launch_only_once, [ TrueClass, FalseClass ] property :ld_group, String property :limit_load_from_hosts, Array |