From 5785714b64149c2377cd9697c77162b3e7b37e7d Mon Sep 17 00:00:00 2001 From: Ophestra Date: Mon, 8 Dec 2025 04:57:24 +0900 Subject: container: call op method right before initial process This is at a point considered to be already "within" the container. Daemons internal to the container can be started here. Signed-off-by: Ophestra --- container/initbind.go | 1 + 1 file changed, 1 insertion(+) (limited to 'container/initbind.go') diff --git a/container/initbind.go b/container/initbind.go index 2e63219b..f91d5086 100644 --- a/container/initbind.go +++ b/container/initbind.go @@ -90,6 +90,7 @@ func (b *BindMountOp) apply(state *setupState, k syscallDispatcher) error { } return k.bindMount(state, source, target, flags) } +func (b *BindMountOp) late(*setupState, syscallDispatcher) error { return nil } func (b *BindMountOp) Is(op Op) bool { vb, ok := op.(*BindMountOp) -- cgit v1.3.1