This file is indexed.

/usr/lib/ruby/vendor_ruby/vagrant-cachier/bucket/chef_gem.rb is in vagrant-cachier 1.2.1-3.

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
module VagrantPlugins
  module Cachier
    class Bucket
      class ChefGem < Bucket
        def self.capability
          :chef_gemdir
        end

        def install
          if guest.capability?(:chef_gemdir)
            if gemdir_path = guest.capability(:chef_gemdir)
              prefix         = gemdir_path.split('/').last
              bucket_path    = "/tmp/vagrant-cache/#{@name}/#{prefix}"
              gem_cache_path = "#{gemdir_path}/cache"

              symlink(gem_cache_path, bucket_path)
            end
          else
            @env[:ui].info I18n.t('vagrant_cachier.skipping_bucket', bucket: 'ChefRubyGems')
          end
        end
      end
    end
  end
end