mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-05-28 04:36:05 -04:00
Environment#active_machines should return a list of tuple
The tuple should be compsed of the machine name (as a string) and provider name (as a symbol)
This commit is contained in:
parent
66a22e5254
commit
a6caa47f8e
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ module Vagrant
|
|||
targets = client.active_targets
|
||||
names = []
|
||||
targets.each do |t|
|
||||
names << t.name
|
||||
names << [t.name, t.provider_name.to_sym]
|
||||
end
|
||||
names
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in a new issue