mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
nfs: Allow read and write in NFS share.
Reference: https://linux.die.net/man/5/exports
This commit is contained in:
3
Vagrantfile
vendored
3
Vagrantfile
vendored
@@ -31,7 +31,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||||
|
||||
config.vm.synced_folder ".", "/vagrant", disabled: true
|
||||
if (/darwin/ =~ RUBY_PLATFORM) != nil
|
||||
config.vm.synced_folder ".", "/srv/zulip", type: "nfs"
|
||||
config.vm.synced_folder ".", "/srv/zulip", type: "nfs",
|
||||
linux__nfs_options: ['rw']
|
||||
config.vm.network "private_network", type: "dhcp"
|
||||
else
|
||||
config.vm.synced_folder ".", "/srv/zulip"
|
||||
|
Reference in New Issue
Block a user