Skip to content

Commit 6f7a0ae

Browse files
MarcoFalkefanquake
authored andcommitted
ci: Use podman stop over podman kill
This should avoid a race where the kill is not done when spinning up the new container. podman stop waits 10 seconds by default. Github-Pull: #27844 Rebased-From: faaa627
1 parent de56daa commit 6f7a0ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/test/04_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ if [ -z "$DANGER_RUN_CI_ON_HOST" ]; then
4040

4141
if [ -n "${RESTART_CI_DOCKER_BEFORE_RUN}" ] ; then
4242
echo "Restart docker before run to stop and clear all containers started with --rm"
43-
podman container kill --all # Similar to "systemctl restart docker"
43+
podman container stop --all # Similar to "systemctl restart docker"
4444
echo "Prune all dangling images"
4545
docker image prune --force
4646
fi

0 commit comments

Comments
 (0)