Chef/Deprecations/ExecutePathProperty
The Cookstyle cops department: Chef/Deprecations
Enabled by default | Supports autocorrection | Target Chef Version |
---|---|---|
Enabled | No | All Versions |
In Chef Infra Client 13 and later you must set path env vars in execute resources using the environment
property not the legacy path
property.
Examples
incorrect
execute 'some_cmd' do
path '/foo/bar'
end
correct
execute 'some_cmd' do
environment {path: '/foo/bar'}
end
Configurable attributes
Name | Default value | Configurable values |
---|---|---|
Version Added | 6.17.0 | String |
Include | Array |