aboutsummaryrefslogtreecommitdiffhomepage
path: root/helper/bwrap/seccomp.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-03-17 01:09:12 +0900
committerOphestra <cat@gensokyo.uk>2025-03-17 01:10:27 +0900
commitee108603572101ad3c285830e04ee248916b6c5d (patch)
treee3d2274301cf7f1ed39df9c510672745fbe0b08a /helper/bwrap/seccomp.go
parent44277dc0f1fd1806f5ceea34246a4c805a06b61b (diff)
seccomp: install output atomically
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'helper/bwrap/seccomp.go')
-rw-r--r--helper/bwrap/seccomp.go9
1 files changed, 5 insertions, 4 deletions
diff --git a/helper/bwrap/seccomp.go b/helper/bwrap/seccomp.go
index 8e55171b..f5132be3 100644
--- a/helper/bwrap/seccomp.go
+++ b/helper/bwrap/seccomp.go
@@ -48,20 +48,21 @@ func (c *Config) seccompArgs() FDBuilder {
{c.Syscall.Bluetooth, seccomp.FlagBluetooth, "bluetooth"},
}
)
- if seccomp.CPrintln != nil {
+ scmpPrintln := seccomp.GetOutput()
+ if scmpPrintln != nil {
optd = make([]string, 1, len(optCond)+1)
optd[0] = "common"
}
for _, opt := range optCond {
if opt.v {
opts |= opt.o
- if seccomp.CPrintln != nil {
+ if scmpPrintln != nil {
optd = append(optd, opt.d)
}
}
}
- if seccomp.CPrintln != nil {
- seccomp.CPrintln(fmt.Sprintf("seccomp flags: %s", optd))
+ if scmpPrintln != nil {
+ scmpPrintln(fmt.Sprintf("seccomp flags: %s", optd))
}
return &seccompBuilder{seccomp.NewFile(opts)}