chore(ci): fix debug_exit in the flaky systemd DNS test (#4934)

If these fail we shouldn't bail out since we're already bailing out and
we need them to continue for debug output.

Refs #4921
This commit is contained in:
Reactor Scram
2024-05-09 10:06:01 -05:00
committed by GitHub
parent 65064b1907
commit 42bafa898c

View File

@@ -9,8 +9,8 @@ SERVICE_NAME=firezone-client-headless
debug_exit() {
echo "Bailing out. Waiting a couple seconds for things to settle..."
sleep 5
resolvectl dns tun-firezone
systemctl status "$SERVICE_NAME"
resolvectl dns tun-firezone || true
systemctl status "$SERVICE_NAME" || true
exit 1
}