From b2c58007c8cb59fa3865aca3fd8c45739779190a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskar=20Sch=C3=B6ldstr=C3=B6m?= Date: Tue, 16 Jan 2018 14:15:07 -0300 Subject: [PATCH] Issue #1606: Fix vagrant-cachier for modern nfs installations with udp disabled --- Vagrantfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 6498282dd..515fc4cb4 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -152,7 +152,8 @@ Vagrant.configure('2') do |config| # Cache the composer directory. config.cache.enable :generic, cache_dir: '/home/vagrant/.composer/cache' config.cache.synced_folder_opts = { - type: vconfig['vagrant_synced_folder_default_type'] + type: vconfig['vagrant_synced_folder_default_type'], + nfs_udp: false } end