This file is indexed.

/usr/lib/ruby/vendor_ruby/octocatalog-diff/cli/options/pe_enc_ssl_client_cert.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
# frozen_string_literal: true

# Specify the client certificate for connecting to the Puppet Enterprise ENC. This must be specified along with
# --pe-enc-ssl-client-key in order to work.
# @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(:pe_enc_ssl_client_cert) do
  has_weight 353

  def parse(parser, options)
    parser.on('--pe-enc-ssl-client-cert FILENAME', 'SSL client certificate to connect to PE ENC') do |x|
      raise Errno::ENOENT, "--pe-enc-ssl-client-cert #{x} does not point to a valid file" unless File.file?(x)
      options[:pe_enc_ssl_client_cert] = File.read(x)
    end
  end
end