26 lines
497 B
Ruby
26 lines
497 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module HostWindows
|
|
class Plugin < Vagrant.plugin("2")
|
|
name "Windows host"
|
|
description "Windows host support."
|
|
|
|
host("windows") do
|
|
require_relative "host"
|
|
Host
|
|
end
|
|
|
|
host_capability("windows", "nfs_installed") do
|
|
require_relative "cap/nfs"
|
|
Cap::NFS
|
|
end
|
|
|
|
host_capability("windows", "rdp_client") do
|
|
require_relative "cap/rdp"
|
|
Cap::RDP
|
|
end
|
|
end
|
|
end
|
|
end
|