From 82a072f641b2b8eb4f966a01056283f93b57342f Mon Sep 17 00:00:00 2001 From: Ophestra Date: Mon, 17 Feb 2025 00:07:52 +0900 Subject: system/tmpfiles: implement private tmpfiles These are only available within the mount namespace and should significantly reduce attack surface. Signed-off-by: Ophestra --- internal/system/link.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/system/link.go') diff --git a/internal/system/link.go b/internal/system/link.go index 7e690c78..9689e253 100644 --- a/internal/system/link.go +++ b/internal/system/link.go @@ -28,7 +28,7 @@ type Hardlink struct { func (l *Hardlink) Type() Enablement { return l.et } func (l *Hardlink) apply(_ *I) error { - fmsg.Verbose("linking ", l) + fmsg.Verbose("linking", l) return fmsg.WrapErrorSuffix(os.Link(l.src, l.dst), fmt.Sprintf("cannot link %q:", l.dst)) } -- cgit v1.3.1