source: other-projects/hathitrust/vagrant-hadoop-cluster/trunk/modules/stdlib/lib/puppet/parser/functions/keys.rb@ 30903

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

Vagrant provisioning files for a 4-node Hadoop cluster. See README.txt for more details

File size: 514 bytes
Line 
1#
2# keys.rb
3#
4
5module Puppet::Parser::Functions
6 newfunction(:keys, :type => :rvalue, :doc => <<-EOS
7Returns the keys of a hash as an array.
8 EOS
9 ) do |arguments|
10
11 raise(Puppet::ParseError, "keys(): Wrong number of arguments " +
12 "given (#{arguments.size} for 1)") if arguments.size < 1
13
14 hash = arguments[0]
15
16 unless hash.is_a?(Hash)
17 raise(Puppet::ParseError, 'keys(): Requires hash to work with')
18 end
19
20 result = hash.keys
21
22 return result
23 end
24end
25
26# vim: set ts=2 sw=2 et :
Note: See TracBrowser for help on using the repository browser.