blob: c197b17f7bd20f76a7bf1c1a24e31b9c4f863339 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#
# bool2num.rb
#
module Puppet::Parser::Functions
newfunction(:bool2num, :type => :rvalue, :doc => <<-EOS
EOS
) do |arguments|
raise(Puppet::ParseError, "bool2num(): Wrong number of arguments " +
"given (#{arguments.size} for 1)") if arguments.size < 1
boolean = arguments[0]
result = case boolean
#
# This is how undef looks like in Puppet ...
# We yield 0 (or false if you wish) in this case.
#
when /^$/, '' then '0'
when /^(1|t|true)$/ then '1'
when /^(0|f|false)$/ then '0'
# This is not likely to happen ...
when /^(undef|undefined)$/ then '0'
# We may get real boolean values as well ...
when true then '1'
when false then '0'
else
raise(Puppet::ParseError, 'bool2num(): Unknown type of boolean given')
end
return result
end
end
# vim: set ts=2 sw=2 et :
|