summaryrefslogtreecommitdiff
path: root/str2bool.rb
diff options
context:
space:
mode:
authorKrzysztof Wilczynski <krzysztof.wilczynski@linux.com>2011-04-29 20:13:27 +0100
committerKrzysztof Wilczynski <krzysztof.wilczynski@linux.com>2011-04-29 20:13:27 +0100
commitf3b6b11e85ba42af809c12e50f0172dc582a680a (patch)
tree2a65572c07c346d607460b56d0c15978750a20bc /str2bool.rb
parent4c097b0a093b2363904fc3030af48edb9ecf11e9 (diff)
First version. Simple str2bool function to use within Puppet DSL.
Signed-off-by: Krzysztof Wilczynski <krzysztof.wilczynski@linux.com>
Diffstat (limited to 'str2bool.rb')
-rw-r--r--str2bool.rb38
1 files changed, 38 insertions, 0 deletions
diff --git a/str2bool.rb b/str2bool.rb
new file mode 100644
index 0000000..02b5aae
--- /dev/null
+++ b/str2bool.rb
@@ -0,0 +1,38 @@
+#
+# str2bool.rb
+#
+
+module Puppet::Parser::Functions
+ newfunction(:str2bool, :type => :rvalue, :doc => <<-EOS
+ EOS
+ ) do |arguments|
+
+ raise(Puppet::ParseError, "str2bool(): Wrong number of arguments " +
+ "given (#{arguments.size} for 1)") if arguments.size < 1
+
+ string = arguments[0]
+
+ if not string.is_a?(String)
+ raise(Puppet::ParseError, 'str2bool(): Requires either a ' +
+ 'string to work with')
+ end
+
+ result = case string
+ #
+ # This is how undef looks like in Puppet ...
+ # We yield false in this case.
+ #
+ when /^$/, '' then false
+ when /^(1|t|y|true|yes)$/ then true
+ when /^(0|f|n|false|no)$/ then false
+ # This is not likely to happen ...
+ when /^(undef|undefined)$/ then false
+ else
+ raise(Puppet::ParseError, 'str2bool(): Unknown type of boolean given')
+ end
+
+ return result
+ end
+end
+
+# vim: set ts=2 sw=2 et :