mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-14 08:13:06 -05:00
17 lines
366 B
Ruby
17 lines
366 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module CommandSSH
|
|
class Plugin < Vagrant.plugin("2")
|
|
name "ssh command"
|
|
description <<-DESC
|
|
The `ssh` command allows you to SSH in to your running virtual machine.
|
|
DESC
|
|
|
|
command("ssh") do
|
|
require File.expand_path("../command", __FILE__)
|
|
Command
|
|
end
|
|
end
|
|
end
|
|
end
|