This file is indexed.

/usr/lib/ruby/vendor_ruby/octocatalog-diff/cli/options/puppet_master_timeout.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 a timeout for retrieving a catalog from a Puppet master / Puppet server.
# This timeout is specified in seconds.
# @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(:puppet_master_timeout) do
  has_weight 329

  def parse(parser, options)
    OctocatalogDiff::Cli::Options.option_globally_or_per_branch(
      parser: parser,
      options: options,
      cli_name: 'puppet-master-timeout',
      option_name: 'puppet_master_timeout',
      desc: 'Puppet Master catalog retrieval timeout in seconds',
      validator: ->(x) { x.to_i > 0 || raise(ArgumentError, 'Specify timeout as an integer greater than 0') },
      translator: ->(x) { x.to_i }
    )
  end
end