diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-12-01 21:51:39 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-12-01 21:51:39 +0100 |
commit | c93b741b88f960c09790c3bda6b37bd8bbd6ff66 (patch) | |
tree | fd3173d53276485e9707e8708b025788d11c1184 | |
parent | debian: 2.4.4-1 (diff) | |
download | linux-status-c93b741b88f960c09790c3bda6b37bd8bbd6ff66.tar.gz linux-status-c93b741b88f960c09790c3bda6b37bd8bbd6ff66.zip |
debian/vagrant: fix NFS mountingdebian/v2.4.4-1
`vagrant up` started hanging with NFS connection errors, but I'm too
lazy to figure out what it is.
-rw-r--r-- | debian/Vagrantfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/debian/Vagrantfile b/debian/Vagrantfile index ab1decb..fce4afb 100644 --- a/debian/Vagrantfile +++ b/debian/Vagrantfile @@ -12,7 +12,10 @@ Vagrant.configure("2") do |config| # Weirdly enough, VirtualBox's shared folders didn't quite work for me. # gbp buildpackage would just exit with FileExistsError, which doesn't # happen with NFS shares. - config.vm.synced_folder "../", "/vagrant", type: "nfs" + config.vm.synced_folder "../", "/vagrant", + type: "nfs", + nfs_udp: false, + nfs_version: "4" config.vm.provider "libvirt" do |v| v.cpus = 2 |