Skip to main content

WindowsPackageInstallerTypeString

All Cookstyle Cops


The department is: Chef/Deprecations

The full name of the cop is: Chef/Deprecations/WindowsPackageInstallerTypeString


Enabled by defaultSupports autocorrectionTarget Chef Version
EnabledYesAll Versions

In Chef Infra Client 13 and later the windows_package resource’s installer_type property must be a symbol.

Examples

incorrect

windows_package 'AppveyorDeploymentAgent' do
  source 'https://www.example.com/appveyor.msi'
  installer_type 'msi'
  options "/quiet /qn /norestart /log install.log"
end

correct

windows_package 'AppveyorDeploymentAgent' do
  source 'https://www.example.com/appveyor.msi'
  installer_type :msi
  options "/quiet /qn /norestart /log install.log"
end

Configurable attributes

NameDefault valueConfigurable values
Version Added6.17.0String
Exclude
  • **/metadata.rb
  • **/attributes/*.rb
  • **/Berksfile
Array

Was this page helpful?









Search Results