From edea943116c4240b2c6f4ffb270597dfa3f9e0c8 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Wed, 10 Jun 2026 13:10:06 -0600 Subject: [PATCH] test: ensure podman volumes are removed volumes must be removed manually - they are not removed when the podman quadlets are removed and systemd reloaded --- tests/tasks/cleanup.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/tasks/cleanup.yml b/tests/tasks/cleanup.yml index 8b32ce7..3eb0dd0 100644 --- a/tests/tasks/cleanup.yml +++ b/tests/tasks/cleanup.yml @@ -78,3 +78,9 @@ daemon_reload: true tags: - tests::cleanup + +- name: Ensure volumes are removed + ansible.builtin.command: podman volume rm -a -f + changed_when: true + tags: + - tests::cleanup