Sha256: 511babd69c0c95b104cb6e2ef56007fa4d6ebbaf40209e3dfe0e11fa09b93d74

Contents?: true

Size: 1.1 KB

Versions: 88

Compression:

Stored size: 1.1 KB

Contents

require 'puppet/file_serving/mount'

# Find files in the modules' pluginfacts directories.
# This is a very strange mount because it merges
# many directories into one.
class Puppet::FileServing::Mount::PluginFacts < Puppet::FileServing::Mount
  # Return an instance of the appropriate class.
  def find(relative_path, request)
    mod = request.environment.modules.find { |m|  m.pluginfact(relative_path) }
    return nil unless mod

    path = mod.pluginfact(relative_path)

    path
  end

  def search(relative_path, request)
    # We currently only support one kind of search on plugins - return
    # them all.
    paths = request.environment.modules.find_all { |mod| mod.pluginfacts? }.collect { |mod| mod.plugin_fact_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? ? [Puppet[:codedir]] : request.environment.modulepath
    else
      paths
    end
  end

  def valid?
    true
  end
end

Version data entries

88 entries across 88 versions & 1 rubygems

Version Path
puppet-6.29.0 lib/puppet/file_serving/mount/pluginfacts.rb
puppet-6.29.0-x86-mingw32 lib/puppet/file_serving/mount/pluginfacts.rb
puppet-6.29.0-x64-mingw32 lib/puppet/file_serving/mount/pluginfacts.rb
puppet-6.29.0-universal-darwin lib/puppet/file_serving/mount/pluginfacts.rb
puppet-6.28.0 lib/puppet/file_serving/mount/pluginfacts.rb
puppet-6.28.0-x86-mingw32 lib/puppet/file_serving/mount/pluginfacts.rb
puppet-6.28.0-x64-mingw32 lib/puppet/file_serving/mount/pluginfacts.rb
puppet-6.28.0-universal-darwin lib/puppet/file_serving/mount/pluginfacts.rb
puppet-6.27.0 lib/puppet/file_serving/mount/pluginfacts.rb
puppet-6.27.0-x86-mingw32 lib/puppet/file_serving/mount/pluginfacts.rb
puppet-6.27.0-x64-mingw32 lib/puppet/file_serving/mount/pluginfacts.rb
puppet-6.27.0-universal-darwin lib/puppet/file_serving/mount/pluginfacts.rb
puppet-6.26.0 lib/puppet/file_serving/mount/pluginfacts.rb
puppet-6.26.0-x86-mingw32 lib/puppet/file_serving/mount/pluginfacts.rb
puppet-6.26.0-x64-mingw32 lib/puppet/file_serving/mount/pluginfacts.rb
puppet-6.26.0-universal-darwin lib/puppet/file_serving/mount/pluginfacts.rb
puppet-6.25.1 lib/puppet/file_serving/mount/pluginfacts.rb
puppet-6.25.1-x86-mingw32 lib/puppet/file_serving/mount/pluginfacts.rb
puppet-6.25.1-x64-mingw32 lib/puppet/file_serving/mount/pluginfacts.rb
puppet-6.25.1-universal-darwin lib/puppet/file_serving/mount/pluginfacts.rb