7 lines
149 B
Ruby
7 lines
149 B
Ruby
module Puppet::Parser::Functions
|
|
newfunction(:log_path, :type => :rvalue) do |args|
|
|
File.join(lookupvar('::base::log_path'), *args)
|
|
end
|
|
end
|
|
|