Sha256: 4250c927e33f754fff6a830b3915351fe21892fedb741d587e1804de42fe6fc0

Contents?: true

Size: 1.09 KB

Versions: 13

Compression:

Stored size: 1.09 KB

Contents

# frozen_string_literal: true

# Check if a local file is readable using Puppet's
# `Puppet::Parser::Files.find_file()` function. This will only check files on the
# machine you run Bolt on.
Puppet::Functions.create_function(:'file::readable', Puppet::Functions::InternalFunction) do
  # @param filename Absolute path or Puppet file path.
  # @return Whether the file is readable.
  # @example Check a file on disk
  #   file::readable('/tmp/i_dumped_this_here')
  # @example check a file from the modulepath
  #   file::readable('example/VERSION')
  dispatch :readable do
    scope_param
    required_param 'String[1]', :filename
    return_type 'Boolean'
  end

  def readable(scope, filename)
    # Send Analytics Report
    executor = Puppet.lookup(:bolt_executor) {}
    executor&.report_function_call(self.class.name)

    future = executor&.future || Puppet.lookup(:future) { {} }
    fallback = future.fetch('file_paths', false)

    # Find the file path if it exists, otherwise return nil
    found = Bolt::Util.find_file_from_scope(filename, scope, fallback)
    found ? File.readable?(found) : false
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
bolt-3.17.0 bolt-modules/file/lib/puppet/functions/file/readable.rb
bolt-3.16.1 bolt-modules/file/lib/puppet/functions/file/readable.rb
bolt-3.16.0 bolt-modules/file/lib/puppet/functions/file/readable.rb
bolt-3.15.0 bolt-modules/file/lib/puppet/functions/file/readable.rb
bolt-3.14.1 bolt-modules/file/lib/puppet/functions/file/readable.rb
bolt-3.13.0 bolt-modules/file/lib/puppet/functions/file/readable.rb
bolt-3.12.0 bolt-modules/file/lib/puppet/functions/file/readable.rb
bolt-3.11.0 bolt-modules/file/lib/puppet/functions/file/readable.rb
bolt-3.10.0 bolt-modules/file/lib/puppet/functions/file/readable.rb
bolt-3.9.2 bolt-modules/file/lib/puppet/functions/file/readable.rb
bolt-3.9.1 bolt-modules/file/lib/puppet/functions/file/readable.rb
bolt-3.9.0 bolt-modules/file/lib/puppet/functions/file/readable.rb
bolt-3.8.1 bolt-modules/file/lib/puppet/functions/file/readable.rb