summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/trocla.rb
blob: 9fa06bb21b8b753e1160378068aa23668e71cfb2 (plain)
1
2
3
4
5
6
7
module Puppet::Parser::Functions
  newfunction(:trocla, :type => :rvalue) do |*args|
    require File.dirname(__FILE__) + '/../../util/trocla_helper'
    
    Puppet::Util::TroclaHelper.trocla(:password,true,*args)
  end
end