diff options
author | Krzysztof Wilczynski <krzysztof.wilczynski@linux.com> | 2011-04-26 00:04:10 +0100 |
---|---|---|
committer | Krzysztof Wilczynski <krzysztof.wilczynski@linux.com> | 2011-04-26 00:04:10 +0100 |
commit | af5d789e152f60c62a52d20b6bb37bd193dd37c8 (patch) | |
tree | 41c1e9ec0c09394994289edf003dcf2452ef8885 | |
parent | 1b4ade7b2ad74f219a1712f6a28c22e593e7761f (diff) |
First version. Simple prefix function to use within Puppet DSL.
Signed-off-by: Krzysztof Wilczynski <krzysztof.wilczynski@linux.com>
-rw-r--r-- | prefix.rb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/prefix.rb b/prefix.rb new file mode 100644 index 0000000..bf3690d --- /dev/null +++ b/prefix.rb @@ -0,0 +1,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 : + |