Skip to main content

Chef/Correctness/InvalidPlatformValueForPlatformHelper

Cookstyle cops page

The Cookstyle cops department: Chef/Correctness

Enabled by defaultSupports autocorrectionTarget Chef Version
EnabledNoAll Versions

Pass valid platforms to the value_for_platform helper. See Infra Language: Platform for a list of many common platform values.

Examples

incorrect

value_for_platform(
  %w(rhel mac_os_x_server) => { 'default' => 'foo' },
  %w(sles) => { 'default' => 'bar' }
)```

### correct

```ruby
value_for_platform(
  %w(redhat mac_os_x) => { 'default' => 'foo' },
  %w(opensuseleap) => { 'default' => 'bar' }
)

Configurable attributes

NameDefault valueConfigurable values
Version Added5.15.0String
Include
    Array

    Thank you for your feedback!

    ×









    Search Results