vagrant/bin/vagrant-ssh

29 lines
581 B
Plaintext
Raw Normal View History

2010-02-01 02:53:35 +00:00
#!/usr/bin/env ruby
begin
require File.expand_path('../../.bundle/environment', __FILE__)
2010-02-01 02:53:35 +00:00
rescue LoadError
# Fallback on rubygems
require "rubygems"
2010-02-01 02:53:35 +00:00
end
require 'git-style-binary/command'
# Get library
libdir = File.join(File.dirname(__FILE__), '..', 'lib')
$:.unshift(libdir) unless $:.include?(libdir)
require 'vagrant'
2010-02-01 02:53:35 +00:00
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.ssh
2010-02-01 02:53:35 +00:00
end
end