blob: bf3690dd789c3cedafe753c4aa4e8684641de496 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#
# prefix.rb
#
module Puppet::Parser::Functions
newfunction(:prefix, :type => :rvalue, :doc => <<-EOS
EOS
) do |arguments|
# Technically we support two arguments but only first is mandatory ...
raise(Puppet::ParseError, "prefix(): Wrong number of arguments " +
"given (#{arguments.size} for 1)") if arguments.size < 1
array = arguments[0]
if not array.is_a?(Array)
raise(Puppet::ParseError, 'prefix(): Requires an array to work with')
end
prefix = arguments[1] if arguments[1]
result = array.collect { |i| prefix ? prefix + i : i }
return result
end
end
# vim: set ts=2 sw=2 et :
|