Files
ansible_role_package/tests/cleanup.sh
Matthew Stobbs ac87ba3f4c fix tests
- only leave fedora enabled
- test each package one at a time to ensure they install correctly
2025-02-28 20:11:35 -07:00

17 lines
262 B
Bash
Executable File

#!/usr/bin/env zsh
[[ -f ./lib.sh ]] && source ./lib.sh || exit 1
for os in ${OSBUILDS[@]}
do
if podman container exists ${IMAGE}:${os}
then
podman stop ${IMAGE}:${os}
fi
done
if [ "$HOSTOS" = "Darwin" ]
then
podman machine stop ${MACHINENAME}
fi