]> gitweb.fluxo.info Git - puppet-stdlib.git/commitdiff
First version. Simple empty function to use within Puppet DSL.
authorKrzysztof Wilczynski <krzysztof.wilczynski@linux.com>
Mon, 25 Apr 2011 23:09:26 +0000 (00:09 +0100)
committerKrzysztof Wilczynski <krzysztof.wilczynski@linux.com>
Mon, 25 Apr 2011 23:09:26 +0000 (00:09 +0100)
Signed-off-by: Krzysztof Wilczynski <krzysztof.wilczynski@linux.com>
empty.rb [new file with mode: 0644]

diff --git a/empty.rb b/empty.rb
new file mode 100644 (file)
index 0000000..b83ece0
--- /dev/null
+++ b/empty.rb
@@ -0,0 +1,25 @@
+#
+# empty.rb
+#
+
+module Puppet::Parser::Functions
+  newfunction(:empty, :type => :rvalue, :doc => <<-EOS
+    EOS
+  ) do |arguments|
+
+    raise(Puppet::ParseError, "empty(): 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, 'empty(): Requires an array to work with')
+    end
+
+    result = array.empty?
+
+    return result
+  end
+end
+
+# vim: set ts=2 sw=2 et :