Skip to content
This repository has been archived by the owner on Feb 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1657 from oxyc/issue-1606
Browse files Browse the repository at this point in the history
Issue #1606: Fix vagrant-cachier for modern nfs installations with udp disabled
  • Loading branch information
geerlingguy authored Jan 17, 2018
2 parents 91e2feb + b2c5800 commit 7034396
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 7034396

Please sign in to comment.