This file is indexed.

/usr/lib/ruby/vendor_ruby/chef_compat/copied_from_chef.rb is in ruby-compat-resource 12.10.5-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
22
23
24
25
26
27
28
29
module ChefCompat
  module CopiedFromChef
    def self.extend_chef_module(chef_module, target)
      target.instance_eval do
        include chef_module
        @chef_module = chef_module
        def self.method_missing(name, *args, &block)
          @chef_module.send(name, *args, &block)
        end
        def self.const_missing(name)
          @chef_module.const_get(name)
        end
      end
    end

    # This patch to CopiedFromChef's ActionClass is necessary for the include to work
    require 'chef/resource'
    class Chef < ::Chef
      class Resource < ::Chef::Resource
        module ActionClass
          def self.use_inline_resources
          end
          def self.include_resource_dsl(include_resource_dsl)
          end
        end
      end
    end
  end
end