diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-04-10 14:47:58 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-04-10 14:47:58 -0700 |
commit | f8e6b11112e3114168725f6ad55537efb40a341e (patch) | |
tree | d90fa2e4664c05124ac814afb6746a376f9ccaa0 /lib/chef | |
parent | b8d0130343ff1b4e35e7d8ee755c808e01e351bf (diff) | |
download | chef-f8e6b11112e3114168725f6ad55537efb40a341e.tar.gz |
Require plist where we use it
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef')
-rw-r--r-- | lib/chef/provider/osx_profile.rb | 1 | ||||
-rw-r--r-- | lib/chef/provider/user/mac.rb | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/chef/provider/osx_profile.rb b/lib/chef/provider/osx_profile.rb index ba63d4b02a..5d76ec067b 100644 --- a/lib/chef/provider/osx_profile.rb +++ b/lib/chef/provider/osx_profile.rb @@ -21,6 +21,7 @@ require_relative "../provider" require_relative "../resource" require_relative "../resource/file" require "uuidtools" +require "plist" class Chef class Provider diff --git a/lib/chef/provider/user/mac.rb b/lib/chef/provider/user/mac.rb index 312d2a7b47..62575851e5 100644 --- a/lib/chef/provider/user/mac.rb +++ b/lib/chef/provider/user/mac.rb @@ -22,6 +22,7 @@ require_relative "../../mixin/shell_out" require_relative "../../mixin/which" require_relative "../user" require_relative "../../resource/user/mac_user" +require "plist" class Chef class Provider |