Find files in the modules’ plugins directories. This is a very strange mount because it merges many directories into one.
Return an instance of the appropriate class.
# File lib/puppet/file_serving/mount/plugins.rb, line 8 def find(relative_path, request) return nil unless mod = request.environment.modules.find { |mod| mod.plugin(relative_path) } path = mod.plugin(relative_path) path end
# File lib/puppet/file_serving/mount/plugins.rb, line 16 def search(relative_path, request) # We currently only support one kind of search on plugins - return # them all. Puppet.debug("Warning: calling Plugins.search with empty module path.") if request.environment.modules.empty? paths = request.environment.modules.find_all { |mod| mod.plugins? }.collect { |mod| mod.plugin_directory } if paths.empty? # If the modulepath is valid then we still need to return a valid root # directory for the search, but make sure nothing inside it is # returned. request.options[:recurse] = false request.environment.modulepath.empty? ? nil : request.environment.modulepath else paths end end
# File lib/puppet/file_serving/mount/plugins.rb, line 32 def valid? true end