Sha256: 848fd1a12aa7c7ec818843b3d05fdd073dba8fc13c709fb58287ec3f3757604d

Contents?: true

Size: 711 Bytes

Versions: 8

Compression:

Stored size: 711 Bytes

Contents

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

Puppet::Parser::Functions::newfunction(:realize, :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|
        coll = Puppet::Parser::Collector.new(self, :nomatter, nil, nil, :virtual)
        vals = [vals] unless vals.is_a?(Array)
        coll.resources = vals.flatten

        compiler.add_collection(coll)
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
puppet-0.25.5 lib/puppet/parser/functions/realize.rb
puppet-0.25.4 lib/puppet/parser/functions/realize.rb
puppet-0.25.3 lib/puppet/parser/functions/realize.rb
puppet-0.24.9 lib/puppet/parser/functions/realize.rb
puppet-0.25.2 lib/puppet/parser/functions/realize.rb
puppet-0.25.1 lib/puppet/parser/functions/realize.rb
puppet-0.25.0 lib/puppet/parser/functions/realize.rb
puppet-0.24.8 lib/puppet/parser/functions/realize.rb