vagrant/plugins/communicators/ssh/plugin.rb

23 lines
547 B
Ruby
Raw Normal View History

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
2012-08-09 00:48:51 -04:00
require "vagrant"
module VagrantPlugins
module CommunicatorSSH
2012-11-07 00:14:10 -05:00
class Plugin < Vagrant.plugin("2")
2013-03-20 10:47:41 -04:00
name "ssh communicator"
2012-08-09 00:48:51 -04:00
description <<-DESC
This plugin allows Vagrant to communicate with remote machines using
SSH as the underlying protocol, powered internally by Ruby's
net-ssh library.
DESC
communicator("ssh") do
require File.expand_path("../communicator", __FILE__)
Communicator
end
end
end
end