From acb6931f3e4af62f92dc2ef85ef7c1ac9f7867e4 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 27 Aug 2025 20:40:30 +0900 Subject: app/seal: leave $DISPLAY as is on host abstract This helps work around faulty software that misinterprets unix: DISPLAY string. Signed-off-by: Ophestra --- internal/app/seal_linux.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'internal') diff --git a/internal/app/seal_linux.go b/internal/app/seal_linux.go index 36984c5e..1b363178 100644 --- a/internal/app/seal_linux.go +++ b/internal/app/seal_linux.go @@ -418,7 +418,9 @@ func (seal *outcome) finalise(ctx context.Context, sys sys.State, config *hst.Co } } else { seal.sys.UpdatePermType(system.EX11, socketPath.String(), acl.Read, acl.Write, acl.Execute) - d = "unix:" + socketPath.String() + if !config.Container.HostAbstract { + d = "unix:" + socketPath.String() + } } } -- cgit v1.3.1