fix syntax
Some checks failed
Podman Rootless Demo / test-backend (push) Has been skipped
Podman Rootless Demo / test-frontend (push) Successful in 11s
Podman Rootless Demo / build-backend (push) Has been skipped
Podman Rootless Demo / build-frontend (push) Failing after 28s
Podman Rootless Demo / deploy-prod (push) Has been skipped

This commit is contained in:
continuist 2025-09-21 14:05:10 -04:00
parent ef2b5b70fc
commit 11f2dc15ef

View file

@ -201,16 +201,16 @@ jobs:
run: | run: |
set -x set -x
echo "=== Force stopping all containers ===" echo "=== Force stopping all containers ==="
podman --remote ps -aq | xargs -r podman --remote stop --time 5 2>/dev/null || true podman --remote ps -aq | xargs -r --no-run-if-empty podman --remote stop --time 5 2>/dev/null || true
echo "=== Force removing all containers ===" echo "=== Force removing all containers ==="
podman --remote ps -aq | xargs -r podman --remote rm -f 2>/dev/null || true podman --remote ps -aq | xargs -r --no-run-if-empty podman --remote rm -f 2>/dev/null || true
echo "=== Force stopping all pods ===" echo "=== Force stopping all pods ==="
podman --remote pod ps -q | xargs -r podman --remote pod stop --time 5 2>/dev/null || true podman --remote pod ps -q | xargs -r --no-run-if-empty podman --remote pod stop --time 5 2>/dev/null || true
echo "=== Force removing all pods ===" echo "=== Force removing all pods ==="
podman --remote pod ps -q | xargs -r podman --remote pod rm -f 2>/dev/null || true podman --remote pod ps -q | xargs -r --no-run-if-empty podman --remote pod rm -f 2>/dev/null || true
- name: Disk preflight diagnostic - name: Disk preflight diagnostic
run: | run: |