You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
podman systemd commands do not clean up leftover .ctr-id files:
# bats --filter basic test/system/250-systemd.bats[passes]
# ls -l /run...-rw-r--r--. 1 root root 64 Nov 2 12:36 podman_test_HvKVwQfIFo.service.ctr-id
After multiple runs of system tests, /run is full of these files. Yes, of course these are tests, not representative, but even in the real world people will be creating and removing differently-named containers and may not want these confusing stale files left behind.
Probably a simple fix, adding to one of the ExecStop stanzas.
The text was updated successfully, but these errors were encountered:
Remove the container/pod ID file along with the container/pod. It's
primarily used in the context of systemd and are not useful nor needed
once a container/pod has ceased to exist.
Fixes: containers#16387
Signed-off-by: Valentin Rothberg <[email protected]>
podman systemd commands do not clean up leftover
.ctr-id
files:After multiple runs of system tests,
/run
is full of these files. Yes, of course these are tests, not representative, but even in the real world people will be creating and removing differently-named containers and may not want these confusing stale files left behind.Probably a simple fix, adding to one of the
ExecStop
stanzas.The text was updated successfully, but these errors were encountered: