diff options
author | Krzysztof Wilczynski <krzysztof.wilczynski@linux.com> | 2011-04-28 03:43:34 +0100 |
---|---|---|
committer | Krzysztof Wilczynski <krzysztof.wilczynski@linux.com> | 2011-04-28 03:43:34 +0100 |
commit | fc886ed7b7678d310b940b6f60f171e54439b483 (patch) | |
tree | 8d4d67de558f6f88918d2cef0e9dc21f5e4991fb | |
parent | d495723d6f0b400755c749e68c0a8b8d49570848 (diff) | |
download | puppet-stdlib-fc886ed7b7678d310b940b6f60f171e54439b483.tar.gz puppet-stdlib-fc886ed7b7678d310b940b6f60f171e54439b483.tar.bz2 |
First version. Simple is_string function to use within Puppet DSL.
Signed-off-by: Krzysztof Wilczynski <krzysztof.wilczynski@linux.com>
-rw-r--r-- | is_string.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/is_string.rb b/is_string.rb new file mode 100644 index 0000000..61037e3 --- /dev/null +++ b/is_string.rb @@ -0,0 +1,21 @@ +# +# is_string.rb +# + +module Puppet::Parser::Functions + newfunction(:is_string, :type => :rvalue, :doc => <<-EOS + EOS + ) do |arguments| + + raise(Puppet::ParseError, "is_string(): Wrong number of arguments " + + "given (#{arguments.size} for 1)") if arguments.size < 1 + + type = arguments[0] + + result = type.is_a?(String) + + return result + end +end + +# vim: set ts=2 sw=2 et : |