Sha256: 3fb86c85af28b2bc8c1c18d2ca7722ab92e4edff0de0210a3fa199f155a7ac94

Contents?: true

Size: 1.46 KB

Versions: 63

Compression:

Stored size: 1.46 KB

Contents

require "vagrant"

module VagrantPlugins
  module SyncedFolderNFS
    # This plugin implements NFS synced folders. In order to take advantage
    # of NFS synced folders, some provider-specific assistance is required.
    # Within the middleware sequences, some data must be put into the
    # environment state bag:
    #
    #   * `nfs_host_ip` (string) - The IP of the host machine that the NFS
    #     client in the machine should talk to.
    #   * `nfs_machine_ip` (string) - The IP of the guest machine that the NFS
    #     server should serve the folders to.
    #   * `nfs_valid_ids` (array of strings) - A list of IDs that are "valid"
    #     and should not be pruned. The synced folder implementation will
    #     regularly prune NFS exports of invalid IDs.
    #
    # If any of these variables are not set, an internal exception will be
    # raised.
    #
    class Plugin < Vagrant.plugin("2")
      name "NFS synced folders"
      description <<-EOF
      The NFS synced folders plugin enables you to use NFS as a synced folder
      implementation.
      EOF

      config("nfs") do
        require_relative "config"
        Config
      end

      synced_folder("nfs", 5) do
        require_relative "synced_folder"
        SyncedFolder
      end

      action_hook("nfs_cleanup") do |hook|
        require_relative "action_cleanup"
        hook.before(
          Vagrant::Action::Builtin::SyncedFolderCleanup,
          ActionCleanup)
      end
    end
  end
end

Version data entries

63 entries across 56 versions & 8 rubygems

Version Path
vagrant-unbundled-2.3.6.0 plugins/synced_folders/nfs/plugin.rb
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/plugins/synced_folders/nfs/plugin.rb
vagrant-unbundled-2.3.3.0 plugins/synced_folders/nfs/plugin.rb
vagrant-unbundled-2.3.2.0 plugins/synced_folders/nfs/plugin.rb
vagrant-unbundled-2.2.19.0 plugins/synced_folders/nfs/plugin.rb
vagrant-unbundled-2.2.18.0 plugins/synced_folders/nfs/plugin.rb
vagrant-unbundled-2.2.16.0 plugins/synced_folders/nfs/plugin.rb
vagrant-unbundled-2.2.14.0 plugins/synced_folders/nfs/plugin.rb
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/plugins/synced_folders/nfs/plugin.rb
vagrant-unbundled-2.2.10.0 plugins/synced_folders/nfs/plugin.rb
vagrant-unbundled-2.2.9.0 plugins/synced_folders/nfs/plugin.rb
vagrant-unbundled-2.2.8.0 plugins/synced_folders/nfs/plugin.rb
vagrant-unbundled-2.2.7.0 plugins/synced_folders/nfs/plugin.rb
vagrant-unbundled-2.2.6.2 plugins/synced_folders/nfs/plugin.rb
vagrant-unbundled-2.2.6.1 plugins/synced_folders/nfs/plugin.rb
vagrant-unbundled-2.2.6.0 plugins/synced_folders/nfs/plugin.rb
vagrant-unbundled-2.2.5.0 plugins/synced_folders/nfs/plugin.rb
vagrant-unbundled-2.2.4.0 plugins/synced_folders/nfs/plugin.rb
vagrant-unbundled-2.2.3.0 plugins/synced_folders/nfs/plugin.rb
vagrant-unbundled-2.2.2.0 plugins/synced_folders/nfs/plugin.rb