diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2017-04-04 10:42:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-04 10:42:09 -0700 |
commit | 9eb7aa84a1b2cbea628f405bf65e70953c1fd422 (patch) | |
tree | 3c4125e6265b5b8ba731b3ee373cd54481baf8e9 /lib/chef/resource | |
parent | 7cee8296914cd826cad49d0d574a786c78026205 (diff) | |
parent | b411d51c6244d639190fa9f7e5801d7e7a4b983b (diff) | |
download | chef-9eb7aa84a1b2cbea628f405bf65e70953c1fd422.tar.gz |
Merge pull request #5822 from gbatye/launchd_limit_load_session
Launchd limit_load_to_session_type accepts Array or String
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 803f9f8551..3fba76e220 100644 --- a/lib/chef/resource/launchd.rb +++ b/lib/chef/resource/launchd.rb @@ -114,7 +114,7 @@ class Chef property :ld_group, String property :limit_load_from_hosts, Array property :limit_load_to_hosts, Array - property :limit_load_to_session_type, Array + property :limit_load_to_session_type, [ Array, String ] property :low_priority_io, [ TrueClass, FalseClass ] property :mach_services, Hash property :nice, Integer |