Sha256: 7967e053530e8baff0741f42678f8a4944b56f115d4fc87386df07673220dc8c

Contents?: true

Size: 1.02 KB

Versions: 20

Compression:

Stored size: 1.02 KB

Contents

# frozen_string_literal: true
Puppet::Parser::Functions::newfunction(:inline_template, :type => :rvalue, :arity => -2, :doc =>
  "Evaluate a template string and return its value.  See
  [the templating docs](https://puppet.com/docs/puppet/latest/lang_template.html) for
  more information. Note that if multiple template strings are specified, their
  output is all concatenated and returned as the output of the function.") do |vals|

  if Puppet[:tasks]
    raise Puppet::ParseErrorWithIssue.from_issue_and_stack(
      Puppet::Pops::Issues::FEATURE_NOT_SUPPORTED_WHEN_SCRIPTING,
      {:feature => 'ERB inline_template'})
  end

  require 'erb'

    vals.collect do |string|
      # Use a wrapper, so the template can't get access to the full
      # Scope object.

      wrapper = Puppet::Parser::TemplateWrapper.new(self)
      begin
        wrapper.result(string)
      rescue => detail
        raise Puppet::ParseError, _("Failed to parse inline template: %{detail}") % { detail: detail }, detail.backtrace
      end
    end.join("")
end

Version data entries

20 entries across 20 versions & 1 rubygems

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