This commit introduces a Darwin-specific template for NFS exports. This is almost identical to the standard BSD template except it puts each NFS export on its own line. This resolves NFS issues discovered in macOS Catalina.
12 lines
195 B
Ruby
12 lines
195 B
Ruby
module VagrantPlugins
|
|
module HostDarwin
|
|
module Cap
|
|
class NFS
|
|
def self.nfs_exports_template(environment)
|
|
"nfs/exports_darwin"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|