diff options
-rwxr-xr-x | bin/reproducible_node_health_check.sh | 3 | ||||
-rw-r--r-- | logparse/reproducible.rules | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/bin/reproducible_node_health_check.sh b/bin/reproducible_node_health_check.sh index 17accb1e..c025cc77 100755 --- a/bin/reproducible_node_health_check.sh +++ b/bin/reproducible_node_health_check.sh @@ -43,8 +43,7 @@ set +e echo "$(date -u) - testing whether the proxy works..." curl http://www.debian.org > /dev/null if [ $? -ne 0 ] ; then - irc_message debian-reproducible "Proxy is down for $HOSTNAME, please tell the jenkins admins to fix this. (sudo service squid3 restart)" - exit 1 + echo "Warning: curl http://www.debian.org failed, probably the proxy is down for $HOSTNAME…" fi # diff --git a/logparse/reproducible.rules b/logparse/reproducible.rules index 66139b3b..cba99551 100644 --- a/logparse/reproducible.rules +++ b/logparse/reproducible.rules @@ -22,3 +22,6 @@ warning /W: The repository .+ is not signed./ warning /W: There is no public key available for the following key IDs:.+/ warning /Warning: /.../shm.+please tell the jenkins admins to fix this./ warning /Warning, today is the wrong future:.+/ +warning /Warning: curl http:..www.debian.org failed, probably the proxy is down for.+/ + + |