Sha256: 9b37feb0e77f057326162ff7be0f90ce333ffaf30a127dd4cfb2f687e4bd9d57
Contents?: true
Size: 1.9 KB
Versions: 13
Compression:
Stored size: 1.9 KB
Contents
# frozen_string_literal: true # # Copyright:: 2019, Chef Software, Inc. # Author:: Tim Smith (<tsmith@chef.io>) # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # module RuboCop module Cop module Chef module ChefDeprecations # In Chef Infra Client 13 the "file" variable for use within the verify property was replaced with the "path" variable. # # @example # # # bad # file '/etc/nginx.conf' do # verify 'nginx -t -c %{file}' # end # # # good # file '/etc/nginx.conf' do # verify 'nginx -t -c %{path}' # end # class VerifyPropertyUsesFileExpansion < Base include RuboCop::Chef::CookbookHelpers extend TargetChefVersion extend AutoCorrector minimum_target_chef_version '12.5' MSG = "Use the 'path' variable in the verify property and not the 'file' variable which was removed in Chef Infra Client 13." def on_block(node) match_property_in_resource?(nil, 'verify', node) do |verify| return unless verify.source.match?(/%{file}/) add_offense(verify, message: MSG, severity: :warning) do |corrector| corrector.replace(verify.loc.expression, verify.loc.expression.source.gsub('%{file}', '%{path}')) end end end end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems