2012-04-04 04:30:46 +02:00
|
|
|
#
|
|
|
|
# is_function_available.rb
|
|
|
|
#
|
|
|
|
|
|
|
|
module Puppet::Parser::Functions
|
|
|
|
newfunction(:is_function_available, :type => :rvalue, :doc => <<-EOS
|
|
|
|
This function accepts a string as an argument, determines whether the
|
|
|
|
Puppet runtime has access to a function by that name. It returns a
|
|
|
|
true if the function exists, false if not.
|
|
|
|
EOS
|
|
|
|
) do |arguments|
|
|
|
|
|
|
|
|
if (arguments.size != 1) then
|
|
|
|
raise(Puppet::ParseError, "is_function_available?(): Wrong number of arguments "+
|
|
|
|
"given #{arguments.size} for 1")
|
|
|
|
end
|
|
|
|
|
2014-05-08 23:43:06 +02:00
|
|
|
# Only allow String types
|
|
|
|
return false unless arguments[0].is_a?(String)
|
|
|
|
|
2012-04-04 04:30:46 +02:00
|
|
|
function = Puppet::Parser::Functions.function(arguments[0].to_sym)
|
|
|
|
function.is_a?(String) and not function.empty?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# vim: set ts=2 sw=2 et :
|