`vagrant up` says what provider it will use

This commit is contained in:
Mitchell Hashimoto 2013-02-01 14:03:59 -08:00
parent 26adfb0de6
commit 2dc14af825
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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}"