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/initremount.go | 1 + 1 file changed, 1 insertion(+) (limited to 'container/initremount.go') diff --git a/container/initremount.go b/container/initremount.go index 9a3217a3..b6d16970 100644 --- a/container/initremount.go +++ b/container/initremount.go @@ -26,6 +26,7 @@ func (*RemountOp) early(*setupState, syscallDispatcher) error { return nil } func (r *RemountOp) apply(state *setupState, k syscallDispatcher) error { return k.remount(state, toSysroot(r.Target.String()), r.Flags) } +func (r *RemountOp) late(*setupState, syscallDispatcher) error { return nil } func (r *RemountOp) Is(op Op) bool { vr, ok := op.(*RemountOp) -- cgit v1.3.1