From 68cbc413587265c4b9500ea68563923185d64afe Mon Sep 17 00:00:00 2001 From: Barna <62602458+code23-barna@users.noreply.github.com> Date: Tue, 14 Mar 2023 16:23:59 +0000 Subject: [PATCH] use appropriate mount_option for 'parallels' provider (Apple Silicon, arm64) (#1481) --- lib/trellis/vagrant.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/trellis/vagrant.rb b/lib/trellis/vagrant.rb index a25aada739..ef3c6bd13a 100644 --- a/lib/trellis/vagrant.rb +++ b/lib/trellis/vagrant.rb @@ -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