Skip to content

Commit 09e7a68

Browse files
andersktimabbott
authored andcommitted
Revert "vagrant: Add NFS backend for file synchronization for OSX."
Reportedly the NFS synced folder type doesn’t work on macOS with the Docker provider, while the default type does. And it seems likely that four years of Ubuntu updates will have resolved the guest crashes that motivated the prior switch to NFS. https://chat.zulip.org/#narrow/stream/21-provision-help/topic/experimental.20docker.20setup This reverts commit 9e8ae68 (zulip#7520). Signed-off-by: Anders Kaseorg <[email protected]>
1 parent 7265561 commit 09e7a68

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

Vagrantfile

+1-7
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
6060
ubuntu_mirror = ""
6161

6262
config.vm.synced_folder ".", "/vagrant", disabled: true
63-
if (/darwin/ =~ RUBY_PLATFORM) != nil
64-
config.vm.synced_folder ".", "/srv/zulip", type: "nfs",
65-
linux__nfs_options: ['rw']
66-
config.vm.network "private_network", type: "dhcp"
67-
else
68-
config.vm.synced_folder ".", "/srv/zulip"
69-
end
63+
config.vm.synced_folder ".", "/srv/zulip"
7064

7165
vagrant_config_file = ENV['HOME'] + "/.zulip-vagrant-config"
7266
if File.file?(vagrant_config_file)

0 commit comments

Comments
 (0)