This file is indexed.

/usr/share/rubygems-integration/all/gems/vagrant-libvirt-0.0.43/lib/vagrant-libvirt/action/prune_nfs_exports.rb is in vagrant-libvirt 0.0.43-2.

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
require 'yaml'
module VagrantPlugins
  module ProviderLibvirt
    module Action
      class PruneNFSExports
        def initialize(app, _env)
          @app = app
        end

        def call(env)
          if env[:host]
            uuid = env[:machine].id
            # get all uuids
            uuids = env[:machine].provider.driver.connection.servers.all.map(&:id)
            # not exiisted in array will removed from nfs
            uuids.delete(uuid)
            env[:host].capability(
              :nfs_prune, env[:machine].ui, uuids
            )
          end

          @app.call(env)
        end
      end
    end
  end
end