diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-11-05 06:00:39 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-11-05 06:00:39 +0900 |
| commit | fba201c9953a490da914b09e09eaaa697a4b36e1 (patch) | |
| tree | 9aa54e81577b6e3e580176f266d70a286ed52d9e /container/container.go | |
| parent | 7f27a6dc5173bc6c4b71918b98a2d6b72bd37d30 (diff) | |
container/std: relocate rule types
This enables its use in hst for #15.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'container/container.go')
| -rw-r--r-- | container/container.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/container/container.go b/container/container.go index 86fd7ce3..f9e7cf12 100644 --- a/container/container.go +++ b/container/container.go @@ -85,7 +85,7 @@ type ( *Ops // Seccomp system call filter rules. - SeccompRules []seccomp.NativeRule + SeccompRules []std.NativeRule // Extra seccomp flags. SeccompFlags seccomp.ExportFlag // Seccomp presets. Has no effect unless SeccompRules is zero-length. @@ -327,7 +327,7 @@ func (p *Container) Serve() error { p.Dir = fhs.AbsRoot } if p.SeccompRules == nil { - p.SeccompRules = make([]seccomp.NativeRule, 0) + p.SeccompRules = make([]std.NativeRule, 0) } err := gob.NewEncoder(setup).Encode(&initParams{ |
