puppet-standalone-mashup/shared/lib/puppet/parser/functions/config_path.rb
2012-06-04 15:05:38 -04:00

6 lines
154 B
Ruby

module Puppet::Parser::Functions
newfunction(:config_path, :type => :rvalue) do |args|
File.join(lookupvar('::base::config_path'), *args)
end
end