summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-07-16 20:18:36 -0700
committerTim Smith <tsmith84@gmail.com>2020-07-20 11:45:27 -0700
commit1fa4023fdde4a6c056a4d19b8bc8013675d7a0e3 (patch)
tree01588b1f17cbb3dc8aa3819bf044a1d3d5a52c2e /lib
parentb39998d602f6a7d0990429f99c3db3629270dfec (diff)
downloadchef-1fa4023fdde4a6c056a4d19b8bc8013675d7a0e3.tar.gz
Remove the now unused coerce method
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib')
-rw-r--r--lib/chef/resource/macos_userdefaults.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/chef/resource/macos_userdefaults.rb b/lib/chef/resource/macos_userdefaults.rb
index 76e36f2acd..b254b77f21 100644
--- a/lib/chef/resource/macos_userdefaults.rb
+++ b/lib/chef/resource/macos_userdefaults.rb
@@ -101,16 +101,6 @@ class Chef
default: false,
desired_state: false
- # coerce various ways of representing a boolean into either 0 (false) or 1 (true)
- # which is what the defaults CLI expects. Why? Well defaults itself accepts a few
- # different formats, but when you do a read command it all comes back as 1 or 0.
- def coerce_booleans(val)
- return 1 if [true, "TRUE", "1", "true", "YES", "yes"].include?(val)
- return 0 if [false, "FALSE", "0", "false", "NO", "no"].include?(val)
-
- val
- end
-
load_current_value do |desired|
Chef::Log.debug "#load_current_value: shelling out \"#{defaults_export_cmd(desired).join(" ")}\" to determine state"
state = if desired.user.nil?