Module: Chef::Mixin::LanguageIncludeRecipe

Included in:
Recipe, RunContext
Defined in:
lib/chef/mixin/language_include_recipe.rb

Instance Method Summary collapse

Instance Method Details

#include_recipe(*recipe_names) ⇒ Object



25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/chef/mixin/language_include_recipe.rb', line 25

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) or node.run_state[:seen_recipes].has_key?(recipe_name + "::default")
      Chef::Log.debug("I am not loading #{recipe_name}, because I have already seen it.")
      next
    end

    result_recipes << load_recipe(recipe_name)
  end
  result_recipes
end

#load_recipe(recipe_name) ⇒ Object



38
39
40
41
42
43
44
45
46
47
# File 'lib/chef/mixin/language_include_recipe.rb', line 38

def load_recipe(recipe_name)
  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]
  cookbook.load_recipe(recipe_short_name, run_context)
end

#require_recipe(*args) ⇒ Object



50
51
52
53
# File 'lib/chef/mixin/language_include_recipe.rb', line 50

def require_recipe(*args)
  Chef::Log.warn("require_recipe is deprecated and will be removed in a future release, please use include_recipe")
  include_recipe(*args)
end