From 6df4b8a8c9d4596e3b3b1e6b1268f23dc1a5bb7d Mon Sep 17 00:00:00 2001 From: Aaron Paterson Date: Tue, 25 Aug 2026 19:12:11 -0500 Subject: [PATCH] /var/lib/journal -> /var/log/journal Signed-off-by: Aaron Paterson --- pkg/cmd/container/create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/container/create.go b/pkg/cmd/container/create.go index e2f89159d95..7cb8dfd5391 100644 --- a/pkg/cmd/container/create.go +++ b/pkg/cmd/container/create.go @@ -616,7 +616,7 @@ func generateRootfsOpts(args []string, id string, ensured *imgutil.EnsuredImage, {Type: "tmpfs", Source: "tmpfs", Destination: "/run"}, {Type: "tmpfs", Source: "tmpfs", Destination: "/run/lock"}, {Type: "tmpfs", Source: "tmpfs", Destination: "/tmp"}, - {Type: "tmpfs", Source: "tmpfs", Destination: "/var/lib/journal"}, + {Type: "tmpfs", Source: "tmpfs", Destination: "/var/log/journal"}, }), ) stopSignal = "SIGRTMIN+3"