Compare commits

..

1 Commits

Author SHA1 Message Date
75c260cd8d
container: optionally isolate host abstract UNIX domain sockets via landlock
All checks were successful
Test / Create distribution (push) Successful in 37s
Test / Create distribution (pull_request) Successful in 26s
Test / Sandbox (push) Successful in 2m17s
Test / Sandbox (pull_request) Successful in 2m15s
Test / Hakurei (push) Successful in 3m10s
Test / Hakurei (pull_request) Successful in 3m7s
Test / Hpkg (pull_request) Successful in 3m41s
Test / Hpkg (push) Successful in 4m19s
Test / Sandbox (race detector) (push) Successful in 4m29s
Test / Sandbox (race detector) (pull_request) Successful in 4m23s
Test / Hakurei (race detector) (push) Successful in 4m57s
Test / Hakurei (race detector) (pull_request) Successful in 4m54s
Test / Flake checks (push) Successful in 1m27s
Test / Flake checks (pull_request) Successful in 1m27s
2025-08-18 16:18:36 +09:00

View File

@ -28,7 +28,7 @@ type appInfo struct {
// passed through to [hst.Config]
Net bool `json:"net,omitempty"`
// passed through to [hst.Config]
ScopeAbstract bool `json:"scope_abstract,omitempty"`
Abstract bool `json:"abstract,omitempty"`
// passed through to [hst.Config]
Device bool `json:"dev,omitempty"`
// passed through to [hst.Config]
@ -89,6 +89,7 @@ func (app *appInfo) toHst(pathSet *appPathSet, pathname *container.Absolute, arg
Devel: app.Devel,
Userns: app.Userns,
Net: app.Net,
Abstract: app.Abstract,
Device: app.Device,
Tty: app.Tty || flagDropShell,
MapRealUID: app.MapRealUID,