Chef/Modernize/ResourceForcingCompileTime
The Cookstyle cops department: Chef/Modernize
Enabled by default | Supports autocorrection | Target Chef Version |
---|---|---|
Enabled | No | All Versions |
The hostname, build_essential, chef_gem, and ohai_hint resources include ‘compile_time’ properties, which should be used to force the resources to run at compile time by setting compile_time true
.
Examples
incorrect
build_essential 'install build tools' do
action :nothing
end.run_action(:install)
correct
build_essential 'install build tools' do
compile_time true
end
Configurable attributes
Name | Default value | Configurable values |
---|---|---|
Version Added | 5.18.0 | String |
Include | Array |