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

10 lines
198 B
Ruby
Raw Normal View History

require 'puppet/modules/common_directories'
module Puppet::Parser::Functions
newfunction(:sbin_path, :type => :rvalue) do |args|
sbin_path(lookupvar('base::install_path'), *args)
end
end