mirror of
https://github.com/containers/podman.git
synced 2026-07-10 07:15:05 -04:00
Makes for easier cleanup, and follows previous cirrus convention. Signed-off-by: Ashley Cui <acui@redhat.com>
18 lines
331 B
Bash
Executable File
18 lines
331 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Best-effort cleanup of podman machine state and leaked test processes.
|
|
|
|
set +e -x
|
|
|
|
pkill -f vfkit
|
|
pkill -f krunkit
|
|
pkill -f gvproxy
|
|
pkill -f ginkgo
|
|
|
|
rm -rf "$HOME/.local/share/containers/podman/machine"
|
|
rm -rf "$HOME/.config/containers/podman"
|
|
rm -rf "${TMPDIR:-/private/tmp/ci}"
|
|
|
|
# Make we never error
|
|
true
|