forked from puppetlabs/puppetlabs-stdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget_module_path.rb
More file actions
21 lines (19 loc) · 835 Bytes
/
get_module_path.rb
File metadata and controls
21 lines (19 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# get_module_path.rb
#
module Puppet::Parser::Functions
newfunction(:get_module_path, :type => :rvalue, :doc => <<-DOC
Returns the absolute path of the specified module for the current
environment.
Example:
$module_path = get_module_path('stdlib')
Note that since Puppet 5.4.0 the function `module_directory()` in Puppet does the same thing and will return
the path to the first found module if given multiple values or an array.
DOC
) do |args|
raise(Puppet::ParseError, 'get_module_path(): Wrong number of arguments, expects one') unless args.size == 1
module_path = Puppet::Module.find(args[0], compiler.environment.to_s)
raise(Puppet::ParseError, "Could not find module #{args[0]} in environment #{compiler.environment}") unless module_path
module_path.path
end
end