Match Mount default cache/sync to container defaults. (#446)

- Use `cache=auto`, `sync=fsync` as default everywhere.
This commit is contained in:
J Logan
2025-12-11 19:47:02 -03:00
committed by GitHub
parent 7962dae643
commit 6d548a0e49
+1 -1
View File
@@ -164,7 +164,7 @@ extension Mount {
extension VZDiskImageStorageDeviceAttachment {
static func mountToVZAttachment(mount: Mount, options: [String]) throws -> VZDiskImageStorageDeviceAttachment {
var cachingMode: VZDiskImageCachingMode = .automatic
var synchronizationMode: VZDiskImageSynchronizationMode = .none
var synchronizationMode: VZDiskImageSynchronizationMode = .fsync
for option in options {
let split = option.split(separator: "=")