vagrant/plugins/hosts/windows/plugin.rb

36 lines
783 B
Ruby
Raw Normal View History

2012-04-19 05:20:45 +00:00
require "vagrant"
module VagrantPlugins
module HostWindows
2012-11-07 05:20:22 +00:00
class Plugin < Vagrant.plugin("2")
2012-04-19 05:20:45 +00:00
name "Windows host"
description "Windows host support."
2012-05-23 23:03:14 +00:00
host("windows") do
2014-01-08 05:13:21 +00:00
require_relative "host"
2012-05-23 23:03:14 +00:00
Host
end
2014-01-08 05:13:21 +00:00
2015-11-05 03:37:55 +00:00
host_capability("windows", "provider_install_virtualbox") do
require_relative "cap/provider_install_virtualbox"
Cap::ProviderInstallVirtualBox
end
2014-01-08 05:13:21 +00:00
host_capability("windows", "nfs_installed") do
require_relative "cap/nfs"
Cap::NFS
end
2014-04-12 22:44:39 +00:00
host_capability("windows", "rdp_client") do
require_relative "cap/rdp"
Cap::RDP
end
host_capability("windows", "ps_client") do
require_relative "cap/ps"
Cap::PS
end
2012-04-19 05:20:45 +00:00
end
end
end