Sha256: bfa1596f8c9e207852ef29589f9ff7477471ac32288f42b1f8165c4c3ce93b26
Contents?: true
Size: 1.65 KB
Versions: 104
Compression:
Stored size: 1.65 KB
Contents
# # Author:: Adam Jacob (<adam@opscode.com>) # Copyright:: Copyright (c) 2008, 2009 Opscode, Inc. # License:: Apache License, Version 2.0 # # 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. # require 'chef/log' class Chef module Mixin module LanguageIncludeRecipe def include_recipe(*recipe_names) result_recipes = Array.new recipe_names.flatten.each do |recipe_name| if node.run_state[:seen_recipes].has_key?(recipe_name) Chef::Log.debug("I am not loading #{recipe_name}, because I have already seen it.") next end Chef::Log.debug("Loading Recipe #{recipe_name} via include_recipe") node.run_state[:seen_recipes][recipe_name] = true cookbook_name, recipe_short_name = Chef::Recipe.parse_recipe_name(recipe_name) run_context = self.is_a?(Chef::RunContext) ? self : self.run_context cookbook = run_context.cookbook_collection[cookbook_name] result_recipes << cookbook.load_recipe(recipe_short_name, run_context) end result_recipes end def require_recipe(*args) include_recipe(*args) end end end end
Version data entries
104 entries across 104 versions & 8 rubygems