Update from vboxsf to vboxvfs

BSD guests use vboxvfs module for mounting share folders
This commit is contained in:
Brian Cain 2019-03-07 10:30:29 -08:00
parent 554b096961
commit 0bfca8293a
No known key found for this signature in database
GPG Key ID: 9FC4639B2E4510A0
1 changed files with 2 additions and 2 deletions

View File

@ -15,8 +15,8 @@ module VagrantPlugins
@@logger.debug("Mounting #{name} (#{options[:hostpath]} to #{guestpath})")
builtin_mount_type = "-cit vboxsf"
addon_mount_type = "-t vboxsf"
builtin_mount_type = "-cit vboxvfs"
addon_mount_type = "-t vboxvfs"
mount_options = options.fetch(:mount_options, [])
detected_ids = detect_owner_group_ids(machine, guest_path, mount_options, options)