From da53c1f69a084eb2c93c0cdda7f77f8573ead13a Mon Sep 17 00:00:00 2001 From: Benjamin Leggett Date: Tue, 31 Mar 2026 17:34:06 -0400 Subject: [PATCH] Attach needs to apply guid/uid --- src/wrap.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wrap.rs b/src/wrap.rs index 12f2096..76c6ed3 100644 --- a/src/wrap.rs +++ b/src/wrap.rs @@ -810,6 +810,8 @@ impl Wrappable for AttachRequest { debug!("all namespaces joined -- forking child"); fork_and_wait()?; + apply_gid_uid(self.exec.gid, self.exec.uid)?; + self.exec.execute() } }