diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-09-29 07:07:16 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-09-29 07:07:16 +0900 |
| commit | 1ba1cb886584966b4e6e65284a04dfaf8962ed65 (patch) | |
| tree | 12a96d2220e88d410173ede47f25c74b5b4f9ae5 /internal/app | |
| parent | 44ba7a5f02b7575a706a22aac53c8ac608d18f23 (diff) | |
hst/config: remove seccomp bit fields
These serve little purpose and are not friendly for use from other languages.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app')
| -rw-r--r-- | internal/app/container.go | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/internal/app/container.go b/internal/app/container.go index ae9dbf33..eef4e226 100644 --- a/internal/app/container.go +++ b/internal/app/container.go @@ -32,12 +32,10 @@ func newContainer( } params := &container.Params{ - Hostname: s.Hostname, - SeccompFlags: s.SeccompFlags, - SeccompPresets: s.SeccompPresets, - RetainSession: s.Tty, - HostNet: s.HostNet, - HostAbstract: s.HostAbstract, + Hostname: s.Hostname, + RetainSession: s.Tty, + HostNet: s.HostNet, + HostAbstract: s.HostAbstract, // the container is canceled when shim is requested to exit or receives an interrupt or termination signal; // this behaviour is implemented in the shim |
