diff options
author | Ken Barber <ken@bob.sh> | 2011-04-29 09:27:10 +0200 |
---|---|---|
committer | Ken Barber <ken@bob.sh> | 2011-04-30 15:59:31 +0200 |
commit | 99a93d366f2e1efb977fcc8fe300d3d8357c8214 (patch) | |
tree | fab7510323f123c83da6d7c6cae4fe9e3f2f1e27 /lib/puppet/parser/functions/fact.rb | |
parent | 781a8720577d0cafe2147f3a1b938db7bec31789 (diff) |
Convert to module format.
Diffstat (limited to 'lib/puppet/parser/functions/fact.rb')
-rw-r--r-- | lib/puppet/parser/functions/fact.rb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/lib/puppet/parser/functions/fact.rb b/lib/puppet/parser/functions/fact.rb new file mode 100644 index 0000000..27b7bb2 --- /dev/null +++ b/lib/puppet/parser/functions/fact.rb @@ -0,0 +1,36 @@ +# +# fact.rb +# + +module Puppet::Parser::Functions + newfunction(:fact, :type => :rvalue, :doc => <<-EOS + EOS + ) do |arguments| + + raise(Puppet::ParseError, "fact(): Wrong number of arguments " + + "given (#{arguments.size} for 1)") if arguments.size < 1 + + fact = arguments[0] + + unless fact.is_a?(String) + raise(Puppet::ParseError, 'fact(): Requires fact name to be a string') + end + + raise(Puppet::ParseError, 'fact(): You must provide ' + + 'fact name') if fact.empty? + + result = lookupvar(fact) # Get the value of interest from Facter ... + + # + # Now this is a funny one ... Puppet does not have a concept of + # returning neither undef nor nil back for use within the Puppet DSL + # and empty string is as closest to actual undef as you we can get + # at this point in time ... + # + result = result.empty? ? '' : result + + return result + end +end + +# vim: set ts=2 sw=2 et : |