]> gitweb.fluxo.info Git - puppet-stdlib.git/commitdiff
Add number of stub code for future functions.
authorKrzysztof Wilczynski <krzysztof.wilczynski@linux.com>
Sat, 30 Apr 2011 13:36:25 +0000 (14:36 +0100)
committerKrzysztof Wilczynski <krzysztof.wilczynski@linux.com>
Sat, 30 Apr 2011 13:36:25 +0000 (14:36 +0100)
Signed-off-by: Krzysztof Wilczynski <krzysztof.wilczynski@linux.com>
load_json.rb [new file with mode: 0644]
load_yaml.rb [new file with mode: 0644]
rand.rb [new file with mode: 0644]
squeeze.rb [new file with mode: 0644]

diff --git a/load_json.rb b/load_json.rb
new file mode 100644 (file)
index 0000000..9ec8c78
--- /dev/null
@@ -0,0 +1,12 @@
+#
+# load_json.rb
+#
+
+module Puppet::Parser::Functions
+  newfunction(:load_json, :type => :rvalue, :doc => <<-EOS
+    EOS
+  ) do |arguments|
+  end
+end
+
+# vim: set ts=2 sw=2 et :
diff --git a/load_yaml.rb b/load_yaml.rb
new file mode 100644 (file)
index 0000000..684a721
--- /dev/null
@@ -0,0 +1,12 @@
+#
+# load_yaml.rb
+#
+
+module Puppet::Parser::Functions
+  newfunction(:load_yaml, :type => :rvalue, :doc => <<-EOS
+    EOS
+  ) do |arguments|
+  end
+end
+
+# vim: set ts=2 sw=2 et :
diff --git a/rand.rb b/rand.rb
new file mode 100644 (file)
index 0000000..2cb9acb
--- /dev/null
+++ b/rand.rb
@@ -0,0 +1,12 @@
+#
+# rand.rb
+#
+
+module Puppet::Parser::Functions
+  newfunction(:rand, :type => :rvalue, :doc => <<-EOS
+    EOS
+  ) do |arguments|
+  end
+end
+
+# vim: set ts=2 sw=2 et :
diff --git a/squeeze.rb b/squeeze.rb
new file mode 100644 (file)
index 0000000..a135bd3
--- /dev/null
@@ -0,0 +1,12 @@
+#
+# squeeze.rb
+#
+
+module Puppet::Parser::Functions
+  newfunction(:squeeze, :type => :rvalue, :doc => <<-EOS
+    EOS
+  ) do |arguments|
+  end
+end
+
+# vim: set ts=2 sw=2 et :