aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/initsymlink.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-12-08 04:57:24 +0900
committerOphestra <cat@gensokyo.uk>2025-12-08 04:57:24 +0900
commit5785714b64149c2377cd9697c77162b3e7b37e7d (patch)
tree10ab1713fe8c1d227ce0ffe696fa64f2d337587e /container/initsymlink.go
parent422efcf258eb49ecd0d4de8e53adae656696ea56 (diff)
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 <cat@gensokyo.uk>
Diffstat (limited to 'container/initsymlink.go')
-rw-r--r--container/initsymlink.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/container/initsymlink.go b/container/initsymlink.go
index 7d722d5b..be0ce2a2 100644
--- a/container/initsymlink.go
+++ b/container/initsymlink.go
@@ -50,6 +50,8 @@ func (l *SymlinkOp) apply(state *setupState, k syscallDispatcher) error {
return k.symlink(l.LinkName, target)
}
+func (l *SymlinkOp) late(*setupState, syscallDispatcher) error { return nil }
+
func (l *SymlinkOp) Is(op Op) bool {
vl, ok := op.(*SymlinkOp)
return ok && l.Valid() && vl.Valid() &&