Sha256: dc221e7e907f5cd911ec2b6418d8187343af6411eac7b13f155f42b60a2a24a0
Contents?: true
Size: 1.99 KB
Versions: 12
Compression:
Stored size: 1.99 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 ChefModernize # For many users the apt::default cookbook is used only to update apt's package cache. Chef Infra Client 12.7 and later include an apt_update resource which should be used to perform this instead. Keep in mind that some users will want to stick with the apt::default recipe as it also installs packages necessary for using https repositories on Debian systems and manages some configuration files. # # @example # # # bad # include_recipe 'apt::default' # include_recipe 'apt' # # # good # apt_update # class IncludingAptDefaultRecipe < Base extend TargetChefVersion minimum_target_chef_version '12.7' MSG = 'Do not include the Apt default recipe to update package cache. Instead use the apt_update resource, which is built into Chef Infra Client 12.7 and later.' RESTRICT_ON_SEND = [:include_recipe].freeze def_node_matcher :apt_recipe_usage?, <<-PATTERN (send nil? :include_recipe (str {"apt" "apt::default"})) PATTERN def on_send(node) apt_recipe_usage?(node) do add_offense(node, message: MSG, severity: :refactor) end end end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems