This file is indexed.

/usr/lib/ruby/vendor_ruby/cheffish/chef_run_data.rb is in ruby-cheffish 4.0.0-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
require 'chef/config'
require 'cheffish/with_pattern'

module Cheffish
  class ChefRunData
    def initialize(config)
      @local_servers = []
      @current_chef_server = Cheffish.default_chef_server(config)
    end

    extend Cheffish::WithPattern
    with :data_bag
    with :environment
    with :data_bag_item_encryption
    with :chef_server

    attr_reader :local_servers
  end
end