From c9dcca03b5106a69a39e88ec1c0c53a7ffc121e7 Mon Sep 17 00:00:00 2001 From: Krzysztof Wilczynski Date: Tue, 26 Apr 2011 00:14:48 +0100 Subject: First version. Simple unique function to use within Puppet DSL. Signed-off-by: Krzysztof Wilczynski --- unique.rb | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 unique.rb (limited to 'unique.rb') diff --git a/unique.rb b/unique.rb new file mode 100644 index 0000000..03a5678 --- /dev/null +++ b/unique.rb @@ -0,0 +1,25 @@ +# +# unique.rb +# + +module Puppet::Parser::Functions + newfunction(:unique, :type => :rvalue, :doc => <<-EOS + EOS + ) do |arguments| + + raise(Puppet::ParseError, "unique(): 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, 'unique(): Requires an array to work with') + end + + result = array.uniq + + return result + end +end + +# vim: set ts=2 sw=2 et : -- cgit v1.2.3