Sha256: d67689ef5fa671fa69cf36dd154bdab72e956c7b1206fc97f951d06c6282d063

Contents?: true

Size: 630 Bytes

Versions: 4

Compression:

Stored size: 630 Bytes

Contents

module Vagrant
  module Plugin
    module V2
      class Host
        # Mounts the given hash of folders via the guests NFS export
        #
        # @param [String] id A unique ID that is guaranteed to be unique to
        #   match these sets of folders.
        # @param [Array<String>] ip IPs of the guest machine.
        # @param [Hash] folders Shared folders to sync.
        def mount_nfs_folders(id, ips, folders)
        end

        # Unmounts the given hash of folders
        #
        # @param [Hash] folders Shared folders to sync.
        def unmount_nfs_folders(folders)
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
vagrant-nfs_guest-0.0.4 lib/vagrant-nfs_guest/hosts/host.rb
vagrant-nfs_guest-0.0.3 lib/vagrant-nfs_guest/hosts/host.rb
vagrant-nfs_guest-0.0.2 lib/vagrant-nfs_guest/hosts/host.rb
vagrant-nfs_guest-0.0.1 lib/vagrant-nfs_guest/hosts/host.rb