Skip to content

Commit

Permalink
Move nfs mounting message within block
Browse files Browse the repository at this point in the history
  • Loading branch information
allisonlarson committed Aug 20, 2024
1 parent 9df95a2 commit a00483d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions plugins/synced_folders/nfs/synced_folder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@ def enable(machine, folders, nfsopts)
mount_folders = {}
folders.each do |id, opts|
mount_folders[id] = opts.dup if opts[:guestpath]
end

machine.ui.detail(I18n.t("vagrant.actions.vm.nfs.mounting_entry",
guestpath: opts[:guestpath],
hostpath: opts[:hostpath]
))
machine.ui.detail(I18n.t("vagrant.actions.vm.nfs.mounting_entry",
guestpath: opts[:guestpath],
hostpath: opts[:hostpath]
))
end

# Mount them!
if machine.guest.capability?(:nfs_pre)
Expand Down

0 comments on commit a00483d

Please sign in to comment.