2011-12-07 22:59:34 +00:00
|
|
|
require 'puppet/modules/common_directories'
|
|
|
|
|
|
|
|
module Puppet::Parser::Functions
|
|
|
|
newfunction(:bin_path, :type => :rvalue) do |args|
|
2012-06-04 19:05:38 +00:00
|
|
|
bin_path(lookupvar('::base::install_path'), *args)
|
2011-12-07 22:59:34 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|