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

Version Path
microwave-0.1006.33 lib/chef/mixin/language_include_recipe.rb
microwave-0.1006.32 lib/chef/mixin/language_include_recipe.rb
microwave-0.1006.31 lib/chef/mixin/language_include_recipe.rb
microwave-0.1006.30 lib/chef/mixin/language_include_recipe.rb
microwave-0.1006.29 lib/chef/mixin/language_include_recipe.rb
microwave-0.1006.27 lib/chef/mixin/language_include_recipe.rb
microwave-0.1006.22 lib/chef/mixin/language_include_recipe.rb
microwave-0.1006.21 lib/chef/mixin/language_include_recipe.rb
microwave-0.1006.20 lib/chef/mixin/language_include_recipe.rb
microwave-0.1006.19 lib/chef/mixin/language_include_recipe.rb
microwave-0.1006.18 lib/chef/mixin/language_include_recipe.rb
microwave-0.1006.17 lib/chef/mixin/language_include_recipe.rb
microwave-0.1006.16 lib/chef/mixin/language_include_recipe.rb
microwave-0.1006.15 lib/chef/mixin/language_include_recipe.rb
microwave-0.1006.14 lib/chef/mixin/language_include_recipe.rb
microwave-0.1006.13 lib/chef/mixin/language_include_recipe.rb
tylerrick-chef-0.10.9 lib/chef/mixin/language_include_recipe.rb
microwave-0.1006.10 lib/chef/mixin/language_include_recipe.rb
microwave-0.1006.9 lib/chef/mixin/language_include_recipe.rb
microwave-0.1006.6 lib/chef/mixin/language_include_recipe.rb