summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-04-10 14:47:58 -0700
committerTim Smith <tsmith84@gmail.com>2020-04-10 14:47:58 -0700
commitf8e6b11112e3114168725f6ad55537efb40a341e (patch)
treed90fa2e4664c05124ac814afb6746a376f9ccaa0
parentb8d0130343ff1b4e35e7d8ee755c808e01e351bf (diff)
downloadchef-f8e6b11112e3114168725f6ad55537efb40a341e.tar.gz
Require plist where we use it
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/provider/osx_profile.rb1
-rw-r--r--lib/chef/provider/user/mac.rb1
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