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)