From 584ce3da685352847e5c6189e5050bd5cb0307e9 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 7 Oct 2025 21:38:31 +0900 Subject: container/bits: move bind bits This allows referring to the bits without importing container. Signed-off-by: Ophestra --- internal/app/spruntime.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/app/spruntime.go') diff --git a/internal/app/spruntime.go b/internal/app/spruntime.go index be188853..d327003f 100644 --- a/internal/app/spruntime.go +++ b/internal/app/spruntime.go @@ -1,7 +1,7 @@ package app import ( - "hakurei.app/container" + "hakurei.app/container/bits" "hakurei.app/container/check" "hakurei.app/container/fhs" "hakurei.app/hst" @@ -35,7 +35,7 @@ func (s spRuntimeOp) toContainer(state *outcomeStateParams) error { _, runtimeDirInst := s.commonPaths(state.outcomeState) state.params.Tmpfs(fhs.AbsRunUser, 1<<12, 0755) - state.params.Bind(runtimeDirInst, state.runtimeDir, container.BindWritable) + state.params.Bind(runtimeDirInst, state.runtimeDir, bits.BindWritable) return nil } -- cgit v1.3.1