From: Krzysztof Wilczynski Date: Mon, 25 Apr 2011 23:14:48 +0000 (+0100) Subject: First version. Simple unique function to use within Puppet DSL. X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=c9dcca03b5106a69a39e88ec1c0c53a7ffc121e7;p=puppet-stdlib.git First version. Simple unique function to use within Puppet DSL. Signed-off-by: Krzysztof Wilczynski --- 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 :