From 999ce223540f1fa406db0de922f85b9e4d3e3605 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 3 Dec 2013 14:39:32 -0800 Subject: [PATCH] provisioners/docker: output version when installing --- plugins/provisioners/docker/docker_installer.rb | 2 +- templates/locales/en.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/provisioners/docker/docker_installer.rb b/plugins/provisioners/docker/docker_installer.rb index 3cf444f41..7a1a0da14 100644 --- a/plugins/provisioners/docker/docker_installer.rb +++ b/plugins/provisioners/docker/docker_installer.rb @@ -16,7 +16,7 @@ module VagrantPlugins end if !@machine.guest.capability(:docker_installed) - @machine.ui.info(I18n.t("vagrant.docker_installing")) + @machine.ui.info(I18n.t("vagrant.docker_installing", version: @version.to_s)) @machine.guest.capability(:docker_install, @version) if !@machine.guest.capability(:docker_installed) diff --git a/templates/locales/en.yml b/templates/locales/en.yml index 084efc3b9..6dc877d0a 100644 --- a/templates/locales/en.yml +++ b/templates/locales/en.yml @@ -44,7 +44,7 @@ en: Warning: Chef run list is empty. This may not be what you want. docker_installing: |- - Installing Docker onto machine... + Installing Docker (%{version}) onto machine... docker_pulling_images: Pulling Docker images... docker_pulling_single: |-