2010-03-15 01:35:18 +00:00
|
|
|
#!/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 "Outputs the status of the current environment"
|
|
|
|
banner <<-EOS
|
|
|
|
Usage: #{command.full_name} #{all_options_string}
|
|
|
|
|
|
|
|
This command outputs the status of the current environment. This command
|
|
|
|
tells you whether the environment is created, running, suspended,
|
|
|
|
etc.
|
|
|
|
|
|
|
|
EOS
|
|
|
|
|
|
|
|
run do |command|
|
2010-03-20 16:15:20 +00:00
|
|
|
Vagrant::Commands.execute(:status)
|
2010-03-15 01:35:18 +00:00
|
|
|
end
|
|
|
|
end
|