This file is indexed.

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

# If enabled, this option will suppress changes to certain attributes of a file, if the
# file is specified to be 'absent' in the target catalog. Suppressed changes in this case
# include user, group, mode, and content, because a removed file has none of those.
# <i>This option is DEPRECATED; please use <code>--filters AbsentFile</code> instead.</i>
# @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(:suppress_absent_file_details) do
  has_weight 600

  def parse(parser, options)
    parser.on('--[no-]suppress-absent-file-details', 'Suppress certain attributes of absent files') do |x|
      options[:suppress_absent_file_details] = x
    end
  end
end