Vagrant: não é possível obter o NFS funcionando

Estou tentando alterar meu VagrantFile para que ele use uma montagem NFS em vez das pastas compartilhadas padrão do VirtualBox.

Recebo esta mensagem de erro:

vm:
* Shared folders that have NFS enabled do not support owner/group
attributes. Host path: .

Este é o meu VagrantFile:

VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| 
  config.vm.box = "ktbartholomew/lamp"
  config.vm.network "private_network", type: "dhcp"
  config.vm.synced_folder ".", "/vagrant", type: "nfs"
end

Não consigo ver nenhum proprietário ou grupo sendo definido.

Por favor ajude! obrigado

questionAnswers(2)

yourAnswerToTheQuestion