Skip to content

Commit

Permalink
use appropriate mount_option for 'parallels' provider (Apple Silicon,…
Browse files Browse the repository at this point in the history
… arm64) (#1481)
  • Loading branch information
code23-barna committed Mar 14, 2023
1 parent 9299457 commit 68cbc41
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/trellis/vagrant.rb
Expand Up @@ -65,6 +65,8 @@ def nfs_path(path)
def mount_options(mount_type, dmode:, fmode:)
if mount_type == 'smb'
["vers=3.02", "mfsymlinks", "dir_mode=0#{dmode}", "file_mode=0#{fmode}", "sec=ntlm"]
elsif mount_type == 'parallels'
["share"]
else
["dmode=#{dmode}", "fmode=#{fmode}"]
end
Expand Down

0 comments on commit 68cbc41

Please sign in to comment.