Sha256: ed820da689482ede6a0425ab77c760deb9334c25e7284e9e4f9f18f4fd827c46

Contents?: true

Size: 1.5 KB

Versions: 19

Compression:

Stored size: 1.5 KB

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

      host_capability("windows", "smb_installed") do
        require_relative "cap/smb"
        Cap::SMB
      end

      host_capability("windows", "smb_prepare") do
        require_relative "cap/smb"
        Cap::SMB
      end

      host_capability("windows", "smb_cleanup") do
        require_relative "cap/smb"
        Cap::SMB
      end

      host_capability("windows", "smb_mount_options") do
        require_relative "cap/smb"
        Cap::SMB
      end

      host_capability("windows", "configured_ip_addresses") do
        require_relative "cap/configured_ip_addresses"
        Cap::ConfiguredIPAddresses
      end

      host_capability("windows", "set_ssh_key_permissions") do
        require_relative "cap/ssh"
        Cap::SSH
      end
    end
  end
end

Version data entries

19 entries across 15 versions & 2 rubygems

Version Path
vagrant-unbundled-2.2.9.0 plugins/hosts/windows/plugin.rb
vagrant-unbundled-2.2.8.0 plugins/hosts/windows/plugin.rb
vagrant-unbundled-2.2.7.0 plugins/hosts/windows/plugin.rb
vagrant-unbundled-2.2.6.2 plugins/hosts/windows/plugin.rb
vagrant-unbundled-2.2.6.1 plugins/hosts/windows/plugin.rb
vagrant-unbundled-2.2.6.0 plugins/hosts/windows/plugin.rb
vagrant-unbundled-2.2.5.0 plugins/hosts/windows/plugin.rb
vagrant-unbundled-2.2.4.0 plugins/hosts/windows/plugin.rb
vagrant-unbundled-2.2.3.0 plugins/hosts/windows/plugin.rb
vagrant-unbundled-2.2.2.0 plugins/hosts/windows/plugin.rb
vagrant-unbundled-2.2.0.0 plugins/hosts/windows/plugin.rb
vagrant-unbundled-2.1.4.0 plugins/hosts/windows/plugin.rb
vagrant-unbundled-2.1.2.0 plugins/hosts/windows/plugin.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/hosts/windows/plugin.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/hosts/windows/plugin.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/hosts/windows/plugin.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/hosts/windows/plugin.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/hosts/windows/plugin.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/hosts/windows/plugin.rb