Skip to main content

Chef/Correctness/MacosUserdefaultsInvalidType

Cookstyle cops page

The Cookstyle cops department: Chef/Correctness

Enabled by defaultSupports autocorrectionTarget Chef Version
EnabledYesAll Versions

The macos_userdefaults resource prior to Chef Infra Client 16.3 would silently continue if invalid types were passed resulting in unexpected behavior. Valid values are: “array”, “bool”, “dict”, “float”, “int”, and “string”.

Examples

incorrect

macos_userdefaults 'set a value' do
  global true
  key 'key'
  type 'boolean'
end

correct

macos_userdefaults 'set a value' do
  global true
  key 'key'
  type 'bool'
end

Configurable attributes

NameDefault valueConfigurable values
Version Added6.14.0String
Include
    Array

    Thank you for your feedback!

    ×









    Search Results