diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-03-17 02:48:32 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-03-17 02:48:32 +0900 |
| commit | 9ce4706a0766880c072cccd2643d66f614a6a16b (patch) | |
| tree | 075e4cf906065ca9c3eb6bacb6820b5786b6d496 /internal/sandbox/container.go | |
| parent | 9a1f8e129fe0f9919981b8a1d345a9b455bd76de (diff) | |
sandbox: move params setup functions
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/sandbox/container.go')
| -rw-r--r-- | internal/sandbox/container.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/internal/sandbox/container.go b/internal/sandbox/container.go index f243ffd9..afbcc4fd 100644 --- a/internal/sandbox/container.go +++ b/internal/sandbox/container.go @@ -13,7 +13,6 @@ import ( "syscall" "time" - "git.gensokyo.uk/security/fortify/helper/proc" "git.gensokyo.uk/security/fortify/seccomp" ) @@ -163,7 +162,7 @@ func (p *Container) Start() error { } // place setup pipe before user supplied extra files, this is later restored by init - if fd, e, err := proc.Setup(&p.cmd.ExtraFiles); err != nil { + if fd, e, err := Setup(&p.cmd.ExtraFiles); err != nil { return wrapErrSuffix(err, "cannot create shim setup pipe:") } else { |
