`vagrant up` says what provider it will use
This commit is contained in:
parent
26adfb0de6
commit
2dc14af825
|
@ -30,6 +30,10 @@ module VagrantPlugins
|
|||
# Go over each VM and bring it up
|
||||
@logger.debug("'Up' each target VM...")
|
||||
with_target_vms(argv, :provider => options[:provider]) do |machine|
|
||||
@env.ui.info(I18n.t(
|
||||
"vagrant.commands.up.upping",
|
||||
:name => machine.name,
|
||||
:provider => machine.provider_name))
|
||||
machine.action(:up, options)
|
||||
end
|
||||
|
||||
|
|
|
@ -464,7 +464,8 @@ en:
|
|||
above with their current state. For more information about a specific
|
||||
VM, run `vagrant status NAME`.
|
||||
up:
|
||||
vm_created: "VM already created. Booting if it's not already running..."
|
||||
upping: |-
|
||||
Bringing machine '%{name}' up with '%{provider}' provider...
|
||||
version:
|
||||
output: "Vagrant version %{version}"
|
||||
|
||||
|
|
Loading…
Reference in New Issue