This file is indexed.

/usr/lib/ruby/vendor_ruby/octocatalog-diff/cli/options/bootstrap_script.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

# Allow specification of a bootstrap script. This runs after checking out the directory, and before running
# puppet there. Good for running librarian to install modules, and anything else site-specific that needs
# to be done.
# @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(:bootstrap_script) do
  has_weight 40

  def parse(parser, options)
    parser.on('--bootstrap-script FILENAME', 'Bootstrap script relative to checkout directory') do |file|
      options[:bootstrap_script] = file
    end
  end
end