Puppet Function: private

Defined in:
puppet/modules/stdlib/lib/puppet/parser/functions/private.rb
Function type:
Ruby 3.x API

Overview

private()Any

DEPRECATED: Sets the current class or definition as private. Calling the class or definition from outside the current module will fail.

Returns:

  • (Any)


6
7
8
9
10
11
12
13
14
15
16
# File 'puppet/modules/stdlib/lib/puppet/parser/functions/private.rb', line 6

newfunction(:private, :doc => <<-'EOS'
  DEPRECATED: Sets the current class or definition as private.
  Calling the class or definition from outside the current module will fail.
EOS
) do |args|
  warning("private() DEPRECATED: This function will cease to function on Puppet 4; please use assert_private() before upgrading to puppet 4 for backwards-compatibility, or migrate to the new parser's typing system.")
  if !Puppet::Parser::Functions.autoloader.loaded?(:assert_private)
    Puppet::Parser::Functions.autoloader.load(:assert_private)
  end
  function_assert_private([(args[0] unless args.size < 1)])
end