From a1d98823f8d17b49b432508d071b62ccd426f1ce Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 2 Jul 2025 21:23:55 +0900 Subject: hakurei: move container toplevel Signed-off-by: Ophestra --- dbus/proc.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dbus/proc.go') diff --git a/dbus/proc.go b/dbus/proc.go index 283f31c5..bbb72f92 100644 --- a/dbus/proc.go +++ b/dbus/proc.go @@ -11,9 +11,9 @@ import ( "strconv" "syscall" + "git.gensokyo.uk/security/hakurei" "git.gensokyo.uk/security/hakurei/helper" "git.gensokyo.uk/security/hakurei/ldd" - "git.gensokyo.uk/security/hakurei/sandbox" "git.gensokyo.uk/security/hakurei/sandbox/seccomp" ) @@ -65,7 +65,7 @@ func (p *Proxy) Start() error { p.helper = helper.New( ctx, toolPath, p.final, true, - argF, func(container *sandbox.Container) { + argF, func(container *hakurei.Container) { container.SeccompFlags |= seccomp.AllowMultiarch container.SeccompPresets |= seccomp.PresetStrict container.Hostname = "hakurei-dbus" @@ -115,7 +115,7 @@ func (p *Proxy) Start() error { slices.Sort(sockDirPaths) sockDirPaths = slices.Compact(sockDirPaths) for _, name := range sockDirPaths { - container.Bind(name, name, sandbox.BindWritable) + container.Bind(name, name, hakurei.BindWritable) } // xdg-dbus-proxy bin path -- cgit v1.3.1