Handle inaccessible VMs with "vagrant status"
This commit is contained in:
parent
ed422e1151
commit
2efe1f9135
|
@ -3,10 +3,19 @@ module Vagrant
|
||||||
class StatusCommand < NamedBase
|
class StatusCommand < NamedBase
|
||||||
register "status", "Shows the status of the current Vagrant environment."
|
register "status", "Shows the status of the current Vagrant environment."
|
||||||
|
|
||||||
def route
|
def execute
|
||||||
state = nil
|
state = nil
|
||||||
results = target_vms.collect do |vm|
|
results = target_vms.collect do |vm|
|
||||||
state = vm.created? ? vm.vm.state.to_s : "not_created"
|
if vm.created?
|
||||||
|
if vm.vm.accessible?
|
||||||
|
state = vm.vm.state.to_s
|
||||||
|
else
|
||||||
|
state = "inaccessible"
|
||||||
|
end
|
||||||
|
else
|
||||||
|
state = "not_created"
|
||||||
|
end
|
||||||
|
|
||||||
"#{vm.name.to_s.ljust(25)}#{state.gsub("_", " ")}"
|
"#{vm.name.to_s.ljust(25)}#{state.gsub("_", " ")}"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -191,6 +191,11 @@ en:
|
||||||
stopped without properly closing the session. Run `vagrant up`
|
stopped without properly closing the session. Run `vagrant up`
|
||||||
to resume this virtual machine. If any problems persist, you may
|
to resume this virtual machine. If any problems persist, you may
|
||||||
have to destroy and restart the virtual machine.
|
have to destroy and restart the virtual machine.
|
||||||
|
inaccessible: |-
|
||||||
|
The VM is inaccessible! This is a rare case which means that VirtualBox
|
||||||
|
can't find your VM configuration. This usually happens when upgrading
|
||||||
|
VirtualBox, moving to a new computer, etc. Please consult VirtualBox
|
||||||
|
for how to handle this issue.
|
||||||
output: |-
|
output: |-
|
||||||
Current VM states:
|
Current VM states:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue