From 8a9ee5d8dcb5de2ff231dcc6b78aec2f7816ccc1 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 7 Sep 2013 17:49:52 -0700 Subject: [PATCH] hosts/arch: correct variable for NFS exports [GH-2161] --- CHANGELOG.md | 1 + plugins/hosts/arch/host.rb | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ed1e4fdd..648e6db8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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] diff --git a/plugins/hosts/arch/host.rb b/plugins/hosts/arch/host.rb index be4f21c30..abfb22349 100644 --- a/plugins/hosts/arch/host.rb +++ b/plugins/hosts/arch/host.rb @@ -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)