Sha256: 708c957a3b5e9bc02d3c8a79af4a3516d4cc99536b5bf4ee7daac8accb3be3df
Contents?: true
Size: 783 Bytes
Versions: 22
Compression:
Stored size: 783 Bytes
Contents
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
Version data entries
22 entries across 22 versions & 3 rubygems