Sha256: 3e19fcf89343e5d98863b7203fc1f0c5056373dc931487d658514f72cd5089fe

Contents?: true

Size: 694 Bytes

Versions: 15

Compression:

Stored size: 694 Bytes

Contents

# Finds an existing file from a module and returns its path.
# (Documented in 3.x stub)
#
# @since 4.8.0
#
Puppet::Functions.create_function(:find_file, Puppet::Functions::InternalFunction) do
  dispatch :find_file do
    scope_param
    repeated_param 'String', :paths
  end

  dispatch :find_file_array do
    scope_param
    repeated_param 'Array[String]', :paths_array
  end

  def find_file_array(scope, array)
    find_file(scope, *array)
  end

  def find_file(scope, *args)
    args.each do |file|
      found = Puppet::Parser::Files.find_file(file, scope.compiler.environment)
      if found && Puppet::FileSystem.exist?(found)
        return found
      end
    end
    nil
  end
end

Version data entries

15 entries across 15 versions & 2 rubygems

Version Path
bolt-0.17.1 vendored/puppet/lib/puppet/functions/find_file.rb
bolt-0.17.0 vendored/puppet/lib/puppet/functions/find_file.rb
bolt-0.16.4 vendored/puppet/lib/puppet/functions/find_file.rb
bolt-0.16.3 vendored/puppet/lib/puppet/functions/find_file.rb
bolt-0.16.2 vendored/puppet/lib/puppet/functions/find_file.rb
puppet-5.4.0 lib/puppet/functions/find_file.rb
puppet-5.4.0-x86-mingw32 lib/puppet/functions/find_file.rb
puppet-5.4.0-x64-mingw32 lib/puppet/functions/find_file.rb
puppet-5.4.0-universal-darwin lib/puppet/functions/find_file.rb
bolt-0.16.1 vendored/puppet/lib/puppet/functions/find_file.rb
bolt-0.16.0 vendored/puppet/lib/puppet/functions/find_file.rb
bolt-0.15.0 vendored/puppet/lib/puppet/functions/find_file.rb
bolt-0.14.0 vendored/puppet/lib/puppet/functions/find_file.rb
bolt-0.13.0 vendored/puppet/lib/puppet/functions/find_file.rb
bolt-0.12.0 vendored/puppet/lib/puppet/functions/find_file.rb