mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
24 lines
482 B
Ruby
24 lines
482 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module CommunicatorWinSSH
|
|
class Plugin < Vagrant.plugin("2")
|
|
name "windows ssh communicator"
|
|
description <<-DESC
|
|
DESC
|
|
|
|
communicator("winssh") do
|
|
require File.expand_path("../communicator", __FILE__)
|
|
Communicator
|
|
end
|
|
|
|
config("winssh") do
|
|
require_relative "config"
|
|
Config
|
|
end
|
|
end
|
|
end
|
|
end
|