File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,8 @@ mounts:
59
59
- location: "~"
60
60
9p:
61
61
# Supported security models are "passthrough", "mapped-xattr", "mapped-file" and "none".
62
- # 🟢 Builtin default: "mapped-xattr"
62
+ # "mapped-xattr" and "mapped-file" are useful for persistent chown but incompatible with symlinks.
63
+ # 🟢 Builtin default: "none" (since Lima v0.13)
63
64
securityModel: null
64
65
# Select 9P protocol version. Valid options are: "9p2000" (legacy), "9p2000.u", "9p2000.L".
65
66
# 🟢 Builtin default: "9p2000.L"
Original file line number Diff line number Diff line change @@ -69,7 +69,8 @@ mounts:
69
69
sftpDriver : null
70
70
9p :
71
71
# Supported security models are "passthrough", "mapped-xattr", "mapped-file" and "none".
72
- # 🟢 Builtin default: "mapped-xattr"
72
+ # "mapped-xattr" and "mapped-file" are useful for persistent chown but incompatible with symlinks.
73
+ # 🟢 Builtin default: "none" (since Lima v0.13)
73
74
securityModel : null
74
75
# Select 9P protocol version. Valid options are: "9p2000" (legacy), "9p2000.u", "9p2000.L".
75
76
# 🟢 Builtin default: "9p2000.L"
Original file line number Diff line number Diff line change @@ -20,7 +20,9 @@ import (
20
20
)
21
21
22
22
const (
23
- Default9pSecurityModel string = "mapped-xattr"
23
+ // Default9pSecurityModel is "none" for supporting symlinks
24
+ // https://gitlab.com/qemu-project/qemu/-/issues/173
25
+ Default9pSecurityModel string = "none"
24
26
Default9pProtocolVersion string = "9p2000.L"
25
27
Default9pMsize string = "128KiB"
26
28
Default9pCacheForRO string = "fscache"
You can’t perform that action at this time.
0 commit comments