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

Commit 5904e8e

Browse files
authored
Merge pull request #737 from oxyc/mount-options-fix
Issue #734: Fix Vagrant 1.8.4 failing to mount NFS synced folders with empty mount_options
2 parents f16f8b5 + fdd347e commit 5904e8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
107107
rsync__args: ['--verbose', '--archive', '--delete', '-z', '--chmod=ugo=rwX'],
108108
id: synced_folder['id'],
109109
create: synced_folder.include?('create') ? synced_folder['create'] : false,
110-
mount_options: synced_folder.include?('mount_options') ? synced_folder['mount_options'] : []
110+
mount_options: synced_folder.include?('mount_options') ? synced_folder['mount_options'] : nil
111111
}
112112
if synced_folder.include?('options_override')
113113
options = options.merge(synced_folder['options_override'])

0 commit comments

Comments
 (0)