#!/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| Vagrant::Commands.execute(:status) end end