Sha256: eda97d473dbe0de0354ddde22e7d7e686766da5e13945948550b9249c6466d4e

Contents?: true

Size: 1.41 KB

Versions: 211

Compression:

Stored size: 1.41 KB

Contents

# Finds an existing file from a module and returns its path.
#
# The argument to this function should be a String as a `<MODULE NAME>/<FILE>`
# reference, which will search for `<FILE>` relative to a module's `files`
# directory. (For example, the reference `mysql/mysqltuner.pl` will search for the
# file `<MODULES DIRECTORY>/mysql/files/mysqltuner.pl`.)
#
# This function can also accept:
# 
# * An absolute String path, which will check for the existence of a file from anywhere on disk.
# * Multiple String arguments, which will return the path of the **first** file
#   found, skipping non existing files.
# * An array of string paths, which will return the path of the **first** file
#   found from the given paths in the array, skipping non existing files.
#
# The function returns `undef` if none of the given paths were found
#
# @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

211 entries across 211 versions & 2 rubygems

Version Path
puppet-5.5.22 lib/puppet/functions/find_file.rb
puppet-5.5.22-x86-mingw32 lib/puppet/functions/find_file.rb
puppet-5.5.22-x64-mingw32 lib/puppet/functions/find_file.rb
puppet-5.5.22-universal-darwin lib/puppet/functions/find_file.rb
puppet-5.5.21 lib/puppet/functions/find_file.rb
puppet-5.5.21-x86-mingw32 lib/puppet/functions/find_file.rb
puppet-5.5.21-x64-mingw32 lib/puppet/functions/find_file.rb
puppet-5.5.21-universal-darwin lib/puppet/functions/find_file.rb
puppet-5.5.20 lib/puppet/functions/find_file.rb
puppet-5.5.20-x86-mingw32 lib/puppet/functions/find_file.rb
puppet-5.5.20-x64-mingw32 lib/puppet/functions/find_file.rb
puppet-5.5.20-universal-darwin lib/puppet/functions/find_file.rb
puppet-5.5.19 lib/puppet/functions/find_file.rb
puppet-5.5.19-x86-mingw32 lib/puppet/functions/find_file.rb
puppet-5.5.19-x64-mingw32 lib/puppet/functions/find_file.rb
puppet-5.5.19-universal-darwin lib/puppet/functions/find_file.rb
puppet-5.5.18 lib/puppet/functions/find_file.rb
puppet-5.5.18-x86-mingw32 lib/puppet/functions/find_file.rb
puppet-5.5.18-x64-mingw32 lib/puppet/functions/find_file.rb
puppet-5.5.18-universal-darwin lib/puppet/functions/find_file.rb