Skip to content

Commit b49f55a

Browse files
committed
tmpfiles.d: ignore x/X command, no cleanup at runtime with Finit
Silence log warnings for command x/X (ignore clean for path), because Finit does not do tmpfiles cleaning at runtime. x /tmp/podman-run-* x /tmp/containers-user-* x /tmp/run-*/libpod D! /var/lib/containers/storage/tmp 0700 root root D! /run/podman 0700 root root D! /var/lib/cni/networks Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
1 parent bf4a584 commit b49f55a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/tmpfiles.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,10 @@ static void tmpfiles(char *line)
434434
}
435435
}
436436
break;
437+
case 'X':
438+
case 'x':
439+
dbg("Unsupported x/X command, ignoring %s, no support for clean at runtime.", path);
440+
break;
437441
case 'Z':
438442
opts = "-R";
439443
/* fallthrough */

0 commit comments

Comments
 (0)