vagrant/bin/vagrant-ssh

28 lines
571 B
Ruby
Executable File

#!/usr/bin/env ruby
begin
require File.expand_path('../../.bundle/environment', __FILE__)
rescue LoadError
# Fallback on rubygems
require "rubygems"
end
require 'git-style-binary/command'
# Get library
libdir = File.join(File.dirname(__FILE__), '..', 'lib')
require File.expand_path('vagrant', libdir)
GitStyleBinary.command do
short_desc "opens an SSH connection into the VM"
banner <<-EOS
Usage: #{command.full_name} #{all_options_string}
Opens an SSH connection into the created VM.
EOS
run do |command|
Vagrant::Commands.execute(:ssh)
end
end