Skip to content

Commit

Permalink
Change output to not include the name
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellh committed Jan 23, 2013
1 parent 7e55e96 commit ca0af28
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions plugins/providers/virtualbox/action/share_folders.rb
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ def mount_shared_folders
if data[:guestpath]
# Guest path specified, so mount the folder to specified point
@env[:ui].info(I18n.t("vagrant.actions.vm.share_folders.mounting_entry",
:name => id,
:guest_path => data[:guestpath]))

# Dup the data so we can pass it to the guest API
Expand All @@ -103,7 +102,7 @@ def mount_shared_folders
else
# If no guest path is specified, then automounting is disabled
@env[:ui].info(I18n.t("vagrant.actions.vm.share_folders.nomount_entry",
:name => id))
:host_path => data[:hostpath]))
end
end
end
Expand Down
4 changes: 2 additions & 2 deletions templates/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -661,8 +661,8 @@ en:
share_folders:
creating: Creating shared folders metadata...
mounting: Mounting shared folders...
mounting_entry: "-- %{name}: %{guest_path}"
nomount_entry: "-- %{name}: Automounting disabled."
mounting_entry: "-- %{guest_path}"
nomount_entry: "-- Automounting disabled: %{host_path}"
suspend:
suspending: Saving VM state and suspending execution...

Expand Down

0 comments on commit ca0af28

Please sign in to comment.