puppet-standalone-mashup/shared/lib/puppet/parser/functions/build_path.rb

9 lines
197 B
Ruby
Raw Normal View History

require 'puppet/modules/common_directories'
module Puppet::Parser::Functions
newfunction(:build_path, :type => :rvalue) do |args|
2012-06-04 19:05:38 +00:00
build_path(lookupvar('::base::src_path'), *args)
end
end