4b5dfcc733
This commit makes several minor consistency and wording edits to the doc strings of the stdlib functions.
20 lines
507 B
Ruby
20 lines
507 B
Ruby
module Puppet::Parser::Functions
|
|
|
|
newfunction(:loadyaml, :type => :rvalue, :doc => <<-'ENDHEREDOC') do |args|
|
|
Load a YAML file containing an array, string, or hash, and return the data
|
|
in the corresponding native data type.
|
|
|
|
For example:
|
|
|
|
$myhash = loadyaml('/etc/puppet/data/myhash.yaml')
|
|
ENDHEREDOC
|
|
|
|
unless args.length == 1
|
|
raise Puppet::ParseError, ("loadyaml(): wrong number of arguments (#{args.length}; must be 1)")
|
|
end
|
|
|
|
YAML.load_file(args[0])
|
|
|
|
end
|
|
|
|
end
|