Sha256: 952ded3992699cbde10b72f3deea1658d86759c3de248bbf4e1e320f28d06be7

Contents?: true

Size: 834 Bytes

Versions: 24

Compression:

Stored size: 834 Bytes

Contents

# This is just syntactic sugar for a collection, although it will generally
# be a good bit faster.

Puppet::Parser::Functions::newfunction(:realize, :arity => -2, :doc => "Make a virtual object real.  This is useful
    when you want to know the name of the virtual object and don't want to
    bother with a full collection.  It is slightly faster than a collection,
    and, of course, is a bit shorter.  You must pass the object using a
    reference; e.g.: `realize User[luke]`." ) do |vals|

    vals = [vals] unless vals.is_a?(Array)
    if Puppet.future_parser?
      coll = Puppet::Pops::Evaluator::Collectors::FixedSetCollector.new(self, vals.flatten)
    else
      coll = Puppet::Parser::Collector.new(self, :nomatter, nil, nil, :virtual)
      coll.resources = vals.flatten
    end

    compiler.add_collection(coll)
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
puppet-3.8.7 lib/puppet/parser/functions/realize.rb
puppet-3.8.7-x86-mingw32 lib/puppet/parser/functions/realize.rb
puppet-3.8.7-x64-mingw32 lib/puppet/parser/functions/realize.rb
puppet-3.8.6 lib/puppet/parser/functions/realize.rb
puppet-3.8.6-x86-mingw32 lib/puppet/parser/functions/realize.rb
puppet-3.8.6-x64-mingw32 lib/puppet/parser/functions/realize.rb
puppet-3.8.5 lib/puppet/parser/functions/realize.rb
puppet-3.8.5-x86-mingw32 lib/puppet/parser/functions/realize.rb
puppet-3.8.5-x64-mingw32 lib/puppet/parser/functions/realize.rb
puppet-3.8.4 lib/puppet/parser/functions/realize.rb
puppet-3.8.4-x86-mingw32 lib/puppet/parser/functions/realize.rb
puppet-3.8.4-x64-mingw32 lib/puppet/parser/functions/realize.rb
puppet-3.8.3 lib/puppet/parser/functions/realize.rb
puppet-3.8.3-x86-mingw32 lib/puppet/parser/functions/realize.rb
puppet-3.8.3-x64-mingw32 lib/puppet/parser/functions/realize.rb
puppet-3.8.2 lib/puppet/parser/functions/realize.rb
puppet-3.8.2-x86-mingw32 lib/puppet/parser/functions/realize.rb
puppet-3.8.2-x64-mingw32 lib/puppet/parser/functions/realize.rb
puppet-3.8.1 lib/puppet/parser/functions/realize.rb
puppet-3.8.1-x86-mingw32 lib/puppet/parser/functions/realize.rb