Commit 7594662c authored by Holger Levsen's avatar Holger Levsen
Browse files

trbo health check: detect failures due to ssh connection refused



Signed-off-by: Holger Levsen's avatarHolger Levsen <holger@layer-acht.org>
parent 674b7e96
......@@ -302,6 +302,8 @@ for JOB_NAME in $(ls -1d reproducible_* | sort ) ; do
small_note "no route to host"
elif $(grep -E -q "^ssh: Could not resolve hostname .*: Temporary failure in name resolution" $LOG) ; then
small_note "failure in name resolution"
elif $(grep -E -q "^ssh: connect to host .* Connection refused" $LOG) ; then
small_note "ssh connection refused"
elif $(grep -q "^E: Package 'diffoscope' has no installation candidate" $LOG) ; then
small_note "package 'diffoscope' has no installation candidate"
elif $(grep -q "^W: No exported results found in /tmp/job-exports" $LOG) ; then
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment