Puppet Function: apache::apache_pw_hash

Defined in:
lib/puppet/functions/apache/apache_pw_hash.rb
Function type:
Ruby 4.x API

Summary

DEPRECATED. Use the function [`apache::pw_hash`](#apachepw_hash) instead.

Overview

apache::apache_pw_hash(Any *$args)Any

Parameters:

  • *args (Any)

Returns:

  • (Any)


4
5
6
7
8
9
10
11
12
# File 'lib/puppet/functions/apache/apache_pw_hash.rb', line 4

Puppet::Functions.create_function(:'apache::apache_pw_hash') do
  dispatch :deprecation_gen do
    repeated_param 'Any', :args
  end
  def deprecation_gen(*args)
    call_function('deprecation', 'apache::apache_pw_hash', 'This function is deprecated, please use apache::pw_hash instead.')
    call_function('apache::pw_hash', *args)
  end
end