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

14 lines
250 B
Ruby

require 'puppet/modules/common_directories'
module Puppet::Parser::Functions
$stdout.puts "here"
newfunction(:bin_path, :type => :rvalue) do |args|
$stdout.puts args.inspect
bin_path(lookupvar('base::install_path'), *args)
end
end