aboutsummaryrefslogtreecommitdiffhomepage
path: root/helper/bwrap/config.set.go
diff options
context:
space:
mode:
Diffstat (limited to 'helper/bwrap/config.set.go')
-rw-r--r--helper/bwrap/config.set.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/helper/bwrap/config.set.go b/helper/bwrap/config.set.go
index 318ad7f2..e9d3e131 100644
--- a/helper/bwrap/config.set.go
+++ b/helper/bwrap/config.set.go
@@ -136,3 +136,10 @@ func (c *Config) SetGID(gid int) *Config {
}
return c
}
+
+// SetSync sets the sync pipe kept open while sandbox is running
+// (--sync-fd FD)
+func (c *Config) SetSync(s *os.File) *Config {
+ c.sync = s
+ return c
+}