Sha256: a4c3c294ac772c26add2b084a80726cb8009f28d266cbedd6067450e6f4d02ca

Contents?: true

Size: 906 Bytes

Versions: 20

Compression:

Stored size: 906 Bytes

Contents

# frozen_string_literal: true
# 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

20 entries across 20 versions & 1 rubygems

Version Path
puppet-8.3.0 lib/puppet/parser/functions/realize.rb
puppet-8.3.0-x86-mingw32 lib/puppet/parser/functions/realize.rb
puppet-8.3.0-x64-mingw32 lib/puppet/parser/functions/realize.rb
puppet-8.3.0-universal-darwin lib/puppet/parser/functions/realize.rb
puppet-8.3.1 lib/puppet/parser/functions/realize.rb
puppet-8.3.1-x86-mingw32 lib/puppet/parser/functions/realize.rb
puppet-8.3.1-x64-mingw32 lib/puppet/parser/functions/realize.rb
puppet-8.3.1-universal-darwin lib/puppet/parser/functions/realize.rb
puppet-8.2.0 lib/puppet/parser/functions/realize.rb
puppet-8.2.0-x86-mingw32 lib/puppet/parser/functions/realize.rb
puppet-8.2.0-x64-mingw32 lib/puppet/parser/functions/realize.rb
puppet-8.2.0-universal-darwin lib/puppet/parser/functions/realize.rb
puppet-8.1.0 lib/puppet/parser/functions/realize.rb
puppet-8.1.0-x86-mingw32 lib/puppet/parser/functions/realize.rb
puppet-8.1.0-x64-mingw32 lib/puppet/parser/functions/realize.rb
puppet-8.1.0-universal-darwin lib/puppet/parser/functions/realize.rb
puppet-8.0.1 lib/puppet/parser/functions/realize.rb
puppet-8.0.1-x86-mingw32 lib/puppet/parser/functions/realize.rb
puppet-8.0.1-x64-mingw32 lib/puppet/parser/functions/realize.rb
puppet-8.0.1-universal-darwin lib/puppet/parser/functions/realize.rb