Sha256: c012538609685defa86174b5d0fead0cd3afd2c5d7a0e794a269dcac48748468

Contents?: true

Size: 827 Bytes

Versions: 11

Compression:

Stored size: 827 Bytes

Contents

# Include the specified classes
Puppet::Parser::Functions::newfunction(:include, :doc => "Evaluate one or more classes.") do |vals|
    if vals.is_a?(Array)
      # Protect against array inside array
      vals = vals.flatten
    else
      vals = [vals]
    end

    # The 'false' disables lazy evaluation.
    klasses = compiler.evaluate_classes(vals, self, false)

    missing = vals.find_all do |klass|
      ! klasses.include?(klass)
    end

    unless missing.empty?
      # Throw an error if we didn't evaluate all of the classes.
      str = "Could not find class"
      str += "es" if missing.length > 1

      str += " " + missing.join(", ")

      if n = namespaces and ! n.empty? and n != [""]
        str += " in namespaces #{@namespaces.join(", ")}"
      end
      self.fail Puppet::ParseError, str
    end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
puppet-3.0.2 lib/puppet/parser/functions/include.rb
puppet-3.0.2.rc3 lib/puppet/parser/functions/include.rb
puppet-3.0.2.rc2 lib/puppet/parser/functions/include.rb
puppet-3.0.2.rc1 lib/puppet/parser/functions/include.rb
puppet-3.0.1 lib/puppet/parser/functions/include.rb
puppet-3.0.1.rc1 lib/puppet/parser/functions/include.rb
puppet-3.0.0 lib/puppet/parser/functions/include.rb
puppet-3.0.0.rc8 lib/puppet/parser/functions/include.rb
puppet-3.0.0.rc7 lib/puppet/parser/functions/include.rb
puppet-3.0.0.rc5 lib/puppet/parser/functions/include.rb
puppet-3.0.0.rc4 lib/puppet/parser/functions/include.rb