view modules/stdlib/lib/puppet/parser/functions/private.rb @ 275:d9352a684e62

Mass update of modules to remove deprecation warnings
author IBBoard <dev@ibboard.co.uk>
date Sun, 26 Jan 2020 11:36:07 +0000
parents c42fb28cff86
children
line wrap: on
line source

#
# private.rb
#
module Puppet::Parser::Functions
  newfunction(:private, :doc => <<-'DOC'
   @summary
    **Deprecated:** Sets the current class or definition as private.
    Calling the class or definition from outside the current module will fail.

   @return
      Sets the current class or definition as private
  DOC
             ) 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.") # rubocop:disable Metrics/LineLength : Cannot shorten this line
    unless Puppet::Parser::Functions.autoloader.loaded?(:assert_private)
      Puppet::Parser::Functions.autoloader.load(:assert_private)
    end
    function_assert_private([(args[0] unless args.empty?)])
  end
end