summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/load_yaml.rb
blob: 1bc2f36f1f3ffd7ef716fcc7d90bbf593698b530 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#
# load_yaml.rb
#

module Puppet::Parser::Functions
  newfunction(:load_yaml, :type => :rvalue, :doc => <<-EOS
    EOS
  ) do |arguments|

    if (arguments.size != 1) then
      raise(Puppet::ParseError, "load_yaml(): Wrong number of arguments "+
        "given #{arguments.size} for 1")
    end

    require 'yaml'

    YAML::load(arguments[0])

  end
end

# vim: set ts=2 sw=2 et :