hosts/linux: fix undefined variable in NFS export [GH-2137]

This commit is contained in:
Mitchell Hashimoto 2013-09-06 08:54:02 -07:00
parent 20fd998d6f
commit bad4c78766
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@ BUG FIXES:
- core: Handle the case where we get an EACCES cleaning up the .vagrant - core: Handle the case where we get an EACCES cleaning up the .vagrant
directory. directory.
- core: Fix exception on upgrade warnings from V1 to V2. [GH-2142] - core: Fix exception on upgrade warnings from V1 to V2. [GH-2142]
- hosts/linux: NFS exporting works properly again. [GH-2137]
- provisioners/chef: Work even with restrictive umask on user. [GH-2121] - provisioners/chef: Work even with restrictive umask on user. [GH-2121]
- provisioners/chef: Fix environment validation to be less restrictive. - provisioners/chef: Fix environment validation to be less restrictive.
- provisioners/puppet: No more "shared folders cannot be found" error. - provisioners/puppet: No more "shared folders cannot be found" error.

View File

@ -58,7 +58,7 @@ module VagrantPlugins
output = TemplateRenderer.render('nfs/exports_linux', output = TemplateRenderer.render('nfs/exports_linux',
:uuid => id, :uuid => id,
:ip => ip, :ips => ips,
:folders => folders, :folders => folders,
:user => Process.uid) :user => Process.uid)