Chef/Deprecations/VerifyPropertyUsesFileExpansion
The Cookstyle cops department: Chef/Deprecations
| Enabled by default | Supports autocorrection | Target Chef Version |
|---|---|---|
| Enabled | Yes | 12.5+ |
In Chef Infra Client 13 the “file” variable for use within the verify property was replaced with the “path” variable.
Examples
incorrect
file '/etc/nginx.conf' do
verify 'nginx -t -c %{file}'
end
correct
file '/etc/nginx.conf' do
verify 'nginx -t -c %{path}'
end
Configurable attributes
| Name | Default value | Configurable values |
|---|---|---|
| Version Added | 5.10.0 | String |
| Include | Array |