hosts/arch: correct variable for NFS exports [GH-2161]

This commit is contained in:
Mitchell Hashimoto 2013-09-07 17:49:52 -07:00
parent 059f494a25
commit 8a9ee5d8dc
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ IMPROVEMENTS:
BUG FIXES:
- hosts/arch: NFS exporting works properly, no exceptions. [GH-2161]
- hosts/fedora: Fix host detection encoding issues. [GH-1977]
- hosts/linux: Fix NFS export problems with `no_subtree_check`. [GH-2156]

View File

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