Mitchell Hashimoto 8bbf6f56f4 Merge pull request #4400 from mwrock/ps-cmd
Add a ps command to vagrant that drops the user into a remote powershell shell
2015-11-18 10:41:36 -08:00

36 lines
783 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", "provider_install_virtualbox") do
require_relative "cap/provider_install_virtualbox"
Cap::ProviderInstallVirtualBox
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
host_capability("windows", "ps_client") do
require_relative "cap/ps"
Cap::PS
end
end
end
end