daily-tracker

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 03db40ff4e736779ba371b11126c8e8f168862fc
parent a2f06a3c8cf73fbde5e38685c3c13397c806996b
Author: Silas Brack <silasbrack@gmail.com>
Date:   Mon,  1 Jun 2026 19:59:41 +0200

debug: add network and verbose SSH diagnostics

Diffstat:
M.forgejo/workflows/bump-infra.yml | 9++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/.forgejo/workflows/bump-infra.yml b/.forgejo/workflows/bump-infra.yml @@ -14,9 +14,12 @@ jobs: set -euo pipefail echo "DEBUG: HOME=$HOME" - echo "DEBUG: SSH key exists: $(ls -la $HOME/.ssh/id_ed25519 2>&1)" - echo "DEBUG: whoami=$(whoami)" - ssh -o StrictHostKeyChecking=no -o ConnectTimeout=5 forgejo@git.fnarglebeast.com 2>&1 || true + echo "DEBUG: resolves to: $(getent hosts git.fnarglebeast.com)" + echo "DEBUG: testing TCP..." + timeout 3 bash -c 'echo | nc -w 2 git.fnarglebeast.com 22' 2>&1 && echo "DEBUG: port 22 reachable" || echo "DEBUG: port 22 NOT reachable" + echo "DEBUG: testing SSH..." + ssh -vvv -o StrictHostKeyChecking=no -o ConnectTimeout=5 forgejo@git.fnarglebeast.com 2>&1 || true + echo "DEBUG: SSH test done" export GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null"