print version when removing a specific box
Example: $ vagrant box remove --box-version 0.2.9 berendt/ubuntu-14.04-amd64 Removing box 'berendt/ubuntu-14.04-amd64' with provider 'virtualbox' in version '0.2.9'...
This commit is contained in:
parent
b97c509c15
commit
c43bd27ffe
|
@ -73,7 +73,8 @@ module Vagrant
|
||||||
|
|
||||||
env[:ui].info(I18n.t("vagrant.commands.box.removing",
|
env[:ui].info(I18n.t("vagrant.commands.box.removing",
|
||||||
:name => box.name,
|
:name => box.name,
|
||||||
:provider => box.provider))
|
:provider => box.provider,
|
||||||
|
:version => box.version))
|
||||||
box.destroy!
|
box.destroy!
|
||||||
|
|
||||||
# Passes on the removed box to the rest of the middleware chain
|
# Passes on the removed box to the rest of the middleware chain
|
||||||
|
|
|
@ -1168,7 +1168,7 @@ en:
|
||||||
box:
|
box:
|
||||||
no_installed_boxes: "There are no installed boxes! Use `vagrant box add` to add some."
|
no_installed_boxes: "There are no installed boxes! Use `vagrant box add` to add some."
|
||||||
removing: |-
|
removing: |-
|
||||||
Removing box '%{name}' with provider '%{provider}'...
|
Removing box '%{name}' with provider '%{provider}' in version '%{version}'...
|
||||||
destroy:
|
destroy:
|
||||||
confirmation: "Are you sure you want to destroy the '%{name}' VM? [y/N] "
|
confirmation: "Are you sure you want to destroy the '%{name}' VM? [y/N] "
|
||||||
will_not_destroy: |-
|
will_not_destroy: |-
|
||||||
|
|
Loading…
Reference in New Issue