Puppet Function: fqdn_rotate

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

Summary

DEPRECATED. Use the namespaced function [`stdlib::fqdn_rotate`](#stdlibfqdn_rotate) instead.

Overview

fqdn_rotate(Any *$args)Any

Parameters:

  • *args (Any)

Returns:

  • (Any)


6
7
8
9
10
11
12
13
14
# File 'lib/puppet/functions/fqdn_rotate.rb', line 6

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