Sha256: c2646ac6488fa1dc259421bdfc774059f7c40f3d1e1ecafa95e053e3fb577a8f

Contents?: true

Size: 1.08 KB

Versions: 88

Compression:

Stored size: 1.08 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.
    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? ? [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/locales.rb
puppet-6.29.0-x86-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.29.0-x64-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.29.0-universal-darwin lib/puppet/file_serving/mount/locales.rb
puppet-6.28.0 lib/puppet/file_serving/mount/locales.rb
puppet-6.28.0-x86-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.28.0-x64-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.28.0-universal-darwin lib/puppet/file_serving/mount/locales.rb
puppet-6.27.0 lib/puppet/file_serving/mount/locales.rb
puppet-6.27.0-x86-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.27.0-x64-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.27.0-universal-darwin lib/puppet/file_serving/mount/locales.rb
puppet-6.26.0 lib/puppet/file_serving/mount/locales.rb
puppet-6.26.0-x86-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.26.0-x64-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.26.0-universal-darwin lib/puppet/file_serving/mount/locales.rb
puppet-6.25.1 lib/puppet/file_serving/mount/locales.rb
puppet-6.25.1-x86-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.25.1-x64-mingw32 lib/puppet/file_serving/mount/locales.rb
puppet-6.25.1-universal-darwin lib/puppet/file_serving/mount/locales.rb