2012-08-09 04:48:51 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module CommunicatorSSH
|
2012-11-07 05:14:10 +00:00
|
|
|
class Plugin < Vagrant.plugin("2")
|
2012-08-09 04:48:51 +00:00
|
|
|
name "ssh communiator"
|
|
|
|
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
|