Sha256: af68866fd90308d40c1b11f96720a2daa63d9de54ce77f6af7cfc720b496b726
Contents?: true
Size: 876 Bytes
Versions: 471
Compression:
Stored size: 876 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| if Puppet[:tasks] raise Puppet::ParseErrorWithIssue.from_issue_and_stack( Puppet::Pops::Issues::CATALOG_OPERATION_NOT_SUPPORTED_WHEN_SCRIPTING, {:operation => 'realize'}) end vals = [vals] unless vals.is_a?(Array) coll = Puppet::Pops::Evaluator::Collectors::FixedSetCollector.new(self, vals.flatten) compiler.add_collection(coll) end
Version data entries
471 entries across 471 versions & 2 rubygems