Sha256: e247ddf2bd2fbd13c814c9419947560f8a48a91625a2da82cbe482ed4dbb72b2
Contents?: true
Size: 497 Bytes
Versions: 5
Compression:
Stored size: 497 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", "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
Version data entries
5 entries across 2 versions & 2 rubygems