Sha256: 7e2f6b6834ace25e3497dddeae5c6f41985597f9a21ed1c12ee3ebf045af3d9b
Contents?: true
Size: 460 Bytes
Versions: 12
Compression:
Stored size: 460 Bytes
Contents
require "vagrant" module VagrantPlugins module SyncedFolderNFSGuest class Plugin < Vagrant.plugin("2") name "Linux host" description "Linux host support." host_capability(:linux, "nfs_mount") do require_relative "cap/mount_nfs" HostLinux::Cap::MountNFS end host_capability(:linux, "nfs_unmount") do require_relative "cap/unmount_nfs" HostLinux::Cap::UnmountNFS end end end end
Version data entries
12 entries across 12 versions & 2 rubygems