From 1ba1cb886584966b4e6e65284a04dfaf8962ed65 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Mon, 29 Sep 2025 07:07:16 +0900 Subject: hst/config: remove seccomp bit fields These serve little purpose and are not friendly for use from other languages. Signed-off-by: Ophestra --- internal/app/container.go | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'internal') 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 -- cgit v1.3.1