Sha256: b902d58c27857f4d405adcc3d9d7090fe10bbf7610d2f44d026b3cd26e78f91e

Contents?: true

Size: 1.17 KB

Versions: 60

Compression:

Stored size: 1.17 KB

Contents

require 'puppet/file_serving/mount'

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

    path = mod.locale(relative_path)

    path
  end

  def search(relative_path, request)
    # We currently only support one kind of search on locales - return
    # them all.
    Puppet.debug("Warning: calling Locales.search with empty module path.") if request.environment.modules.empty?
    paths = request.environment.modules.find_all { |mod| mod.locales? }.collect { |mod| mod.locale_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

  def valid?
    true
  end
end

Version data entries

60 entries across 60 versions & 1 rubygems

Version Path
puppet-6.17.0 lib/puppet/file_serving/mount/locales.rb
puppet-6.17.0-x86-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.17.0-x64-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.17.0-universal-darwin lib/puppet/file_serving/mount/locales.rb
puppet-6.16.0 lib/puppet/file_serving/mount/locales.rb
puppet-6.16.0-x86-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.16.0-x64-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.16.0-universal-darwin lib/puppet/file_serving/mount/locales.rb
puppet-6.15.0 lib/puppet/file_serving/mount/locales.rb
puppet-6.15.0-x86-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.15.0-x64-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.15.0-universal-darwin lib/puppet/file_serving/mount/locales.rb
puppet-6.14.0 lib/puppet/file_serving/mount/locales.rb
puppet-6.14.0-x86-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.14.0-x64-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.14.0-universal-darwin lib/puppet/file_serving/mount/locales.rb
puppet-6.13.0 lib/puppet/file_serving/mount/locales.rb
puppet-6.13.0-x86-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.13.0-x64-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.13.0-universal-darwin lib/puppet/file_serving/mount/locales.rb