From b0b2471c0cd783c670ed7531d5512415259f551d Mon Sep 17 00:00:00 2001 From: Ophestra Date: Fri, 19 Jun 2026 23:36:31 +0900 Subject: [PATCH] cmd/app: include template name in container metadata This helps disambiguate active mutable containers. Signed-off-by: Ophestra --- cmd/app/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/app/main.go b/cmd/app/main.go index a28a662c..0ffa0d53 100644 --- a/cmd/app/main.go +++ b/cmd/app/main.go @@ -86,9 +86,9 @@ func main() { } config := hst.Config{ - ID: "app.hakurei.mutable", + ID: "app.hakurei.mutable." + args[0], Container: &hst.ContainerConfig{ - Hostname: "mutable", + Hostname: args[0] + "-mutable", Filesystem: []hst.FilesystemConfigJSON{ {FilesystemConfig: &hst.FSOverlay{ Target: fhs.AbsRoot,