From a3988c1a7725eb791795643e0810f03bab4572b3 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Mon, 18 Aug 2025 16:47:23 +0900 Subject: hst: rename net and abstract fields This makes more sense and matches the container library. Signed-off-by: Ophestra --- hst/config.go | 4 ++-- hst/hst.go | 3 ++- hst/hst_test.go | 3 ++- 3 files changed, 6 insertions(+), 4 deletions(-) (limited to 'hst') diff --git a/hst/config.go b/hst/config.go index d6f07be0..8226a35f 100644 --- a/hst/config.go +++ b/hst/config.go @@ -78,9 +78,9 @@ type ( // allow userns creation in container Userns bool `json:"userns,omitempty"` // share host net namespace - Net bool `json:"net,omitempty"` + HostNet bool `json:"host_net,omitempty"` // share abstract unix socket scope - Abstract bool `json:"abstract,omitempty"` + HostAbstract bool `json:"host_abstract,omitempty"` // allow dangerous terminal I/O Tty bool `json:"tty,omitempty"` // allow multiarch diff --git a/hst/hst.go b/hst/hst.go index 92769a23..6e77dc98 100644 --- a/hst/hst.go +++ b/hst/hst.go @@ -79,7 +79,8 @@ func Template() *Config { Hostname: "localhost", Devel: true, Userns: true, - Net: true, + HostNet: true, + HostAbstract: true, Device: true, WaitDelay: -1, SeccompFlags: seccomp.AllowMultiarch, diff --git a/hst/hst_test.go b/hst/hst_test.go index 31b9013e..a3930f48 100644 --- a/hst/hst_test.go +++ b/hst/hst_test.go @@ -90,7 +90,8 @@ func TestTemplate(t *testing.T) { "seccomp_compat": true, "devel": true, "userns": true, - "net": true, + "host_net": true, + "host_abstract": true, "tty": true, "multiarch": true, "env": { -- cgit v1.3.1