source: other-projects/hathitrust/vagrant-solr-cluster/trunk/modules/stdlib/lib/puppet/parser/functions/is_bool.rb@ 30960

Last change on this file since 30960 was 30960, checked in by davidb, 7 years ago

Switch to using Puppet to provision machine. Strongly based on files developed for spark-hdfs cluster

File size: 673 bytes
Line 
1#
2# is_bool.rb
3#
4
5module Puppet::Parser::Functions
6 newfunction(:is_bool, :type => :rvalue, :doc => <<-EOS
7Returns true if the variable passed to this function is a boolean.
8 EOS
9 ) do |arguments|
10
11 function_deprecation([:is_bool, 'This method is deprecated, please use the stdlib validate_legacy function, with Stdlib::Compat::Bool. There is further documentation for validate_legacy function in the README.'])
12
13 raise(Puppet::ParseError, "is_bool(): Wrong number of arguments " +
14 "given (#{arguments.size} for 1)") if arguments.size != 1
15
16 type = arguments[0]
17
18 result = type.is_a?(TrueClass) || type.is_a?(FalseClass)
19
20 return result
21 end
22end
Note: See TracBrowser for help on using the repository browser.