This file is indexed.

/usr/lib/ruby/vendor_ruby/octocatalog-diff/cli/options/puppetdb_token_file.rb is in octocatalog-diff 1.5.3-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

# Specify the PE RBAC token to access the PuppetDB API. Refer to
# https://puppet.com/docs/pe/latest/rbac/rbac_token_auth_intro.html#generate-a-token-using-puppet-access
# for details on generating and obtaining a token. Use this option to specify the text
# in a file, to read the content of the token from the file.
# @param parser [OptionParser object] The OptionParser argument
# @param options [Hash] Options hash being constructed; this is modified in this method.
OctocatalogDiff::Cli::Options::Option.newoption(:puppetdb_token_file) do
  has_weight 310

  def parse(parser, options)
    parser.on('--puppetdb-token-file PATH', 'Path containing token for PuppetDB API, relative or absolute') do |x|
      proposed_token_path = x.start_with?('/') ? x : File.join(options[:basedir], x)
      unless File.file?(proposed_token_path)
        raise Errno::ENOENT, "Provided PuppetDB API token (#{proposed_token_path}) does not exist"
      end
      options[:puppetdb_token] = File.read(proposed_token_path)
    end
  end
end