From 39dc8e7bd8b07d1549185cc178fd3723797d3c74 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 25 Feb 2025 18:12:41 +0900 Subject: dbus: set process group id This stops signals sent by the TTY driver from propagating to the xdg-dbus-proxy process. Signed-off-by: Ophestra --- ldd/exec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ldd/exec.go') diff --git a/ldd/exec.go b/ldd/exec.go index 4e5de479..3eb94931 100644 --- a/ldd/exec.go +++ b/ldd/exec.go @@ -29,7 +29,7 @@ func Exec(ctx context.Context, p string) ([]*Entry, error) { Syscall: &bwrap.SyscallPolicy{DenyDevel: true, Multiarch: true}, NewSession: true, DieWithParent: true, - }).Bind("/", "/").DevTmpfs("/dev"), toolPath, + }).Bind("/", "/").DevTmpfs("/dev"), toolPath, false, nil, func(_, _ int) []string { return []string{p} }, nil, nil, ); err != nil { -- cgit v1.3.1