2012-04-19 20:59:48 +00:00
|
|
|
require 'optparse'
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module CommandStatus
|
2012-11-07 05:05:14 +00:00
|
|
|
class Command < Vagrant.plugin("2", :command)
|
2013-11-23 22:00:42 +00:00
|
|
|
def self.synopsis
|
|
|
|
"outputs status of the vagrant machine"
|
|
|
|
end
|
|
|
|
|
2012-04-19 20:59:48 +00:00
|
|
|
def execute
|
2012-12-24 18:00:28 +00:00
|
|
|
opts = OptionParser.new do |o|
|
2016-05-29 05:06:51 +00:00
|
|
|
o.banner = "Usage: vagrant status [name|id]"
|
2012-04-19 20:59:48 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Parse the options
|
|
|
|
argv = parse_options(opts)
|
|
|
|
return if !argv
|
|
|
|
|
2013-08-01 17:23:18 +00:00
|
|
|
max_name_length = 25
|
2013-08-01 17:15:09 +00:00
|
|
|
with_target_vms(argv) do |machine|
|
|
|
|
max_name_length = machine.name.length if machine.name.length > max_name_length
|
|
|
|
end
|
|
|
|
|
2012-04-19 20:59:48 +00:00
|
|
|
state = nil
|
|
|
|
results = []
|
2012-12-24 18:00:28 +00:00
|
|
|
with_target_vms(argv) do |machine|
|
2013-01-21 17:35:46 +00:00
|
|
|
state = machine.state if !state
|
2013-11-24 19:11:38 +00:00
|
|
|
current_state = machine.state
|
|
|
|
results << "#{machine.name.to_s.ljust(max_name_length)} " +
|
|
|
|
"#{current_state.short_description} (#{machine.provider_name})"
|
|
|
|
|
2014-03-14 20:05:24 +00:00
|
|
|
opts = { target: machine.name.to_s }
|
2013-11-24 19:37:57 +00:00
|
|
|
@env.ui.machine("provider-name", machine.provider_name, opts)
|
2013-11-24 19:11:38 +00:00
|
|
|
@env.ui.machine("state", current_state.id, opts)
|
|
|
|
@env.ui.machine("state-human-short", current_state.short_description, opts)
|
|
|
|
@env.ui.machine("state-human-long", current_state.long_description, opts)
|
2012-04-19 20:59:48 +00:00
|
|
|
end
|
|
|
|
|
2013-01-31 04:22:29 +00:00
|
|
|
message = nil
|
|
|
|
if results.length == 1
|
|
|
|
message = state.long_description
|
|
|
|
else
|
|
|
|
message = I18n.t("vagrant.commands.status.listing")
|
|
|
|
end
|
2012-04-19 20:59:48 +00:00
|
|
|
|
|
|
|
@env.ui.info(I18n.t("vagrant.commands.status.output",
|
2014-05-22 16:35:12 +00:00
|
|
|
states: results.join("\n"),
|
|
|
|
message: message),
|
|
|
|
prefix: false)
|
2012-04-19 20:59:48 +00:00
|
|
|
|
|
|
|
# Success, exit status 0
|
|
|
|
0
|
2013-01-21 16:47:29 +00:00
|
|
|
end
|
2012-04-19 20:59:48 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|