From 153ec706521d79b7df06b35e45dcc653c08111c0 Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Thu, 14 Aug 2025 14:10:01 -0700 Subject: [PATCH] setup: Fix a typo carried over from bib Old issue: https://github.com/osbuild/bootc-image-builder/issues/605 --- pkg/setup/setup.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/setup/setup.go b/pkg/setup/setup.go index a25395e..71d376e 100644 --- a/pkg/setup/setup.go +++ b/pkg/setup/setup.go @@ -42,7 +42,7 @@ func EnsureEnvironment(storePath string) error { // a nosuid, no_new_privs environment. In such an environment, we cannot transition from `unconfined_t` to `install_t`, // because we would get more privileges. installType := "system_u:object_r:install_exec_t:s0" - // Where we dump temporary files; this must be an overlayfs as we cannot + // Where we dump temporary files; this must be a tmpfs as we cannot // write security contexts on overlayfs. runTmp := "/run/osbuild/"