mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-05-28 04:36:05 -04:00
20 lines
384 B
Ruby
20 lines
384 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
|
|
end
|
|
end
|
|
end
|