Puppet Function: bool2num
- Defined in:
- puppet/modules/stdlib/lib/puppet/parser/functions/bool2num.rb
- Function type:
- Ruby 3.x API
Overview
Converts a boolean to a number. Converts the values:
false, f, 0, n, and no to 0
true, t, 1, y, and yes to 1
Requires a single boolean or string as an input.
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'puppet/modules/stdlib/lib/puppet/parser/functions/bool2num.rb', line 6 newfunction(:bool2num, :type => :rvalue, :doc => <<-EOS Converts a boolean to a number. Converts the values: false, f, 0, n, and no to 0 true, t, 1, y, and yes to 1 Requires a single boolean or string as an input. EOS ) do |arguments| raise(Puppet::ParseError, "bool2num(): Wrong number of arguments " + "given (#{arguments.size} for 1)") if arguments.size < 1 value = function_str2bool([arguments[0]]) # We have real boolean values as well ... result = value ? 1 : 0 return result end |