diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-07-27 20:56:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-27 20:56:17 +0200 |
commit | 956caf303a80105845b8e94b7018416abc59a474 (patch) | |
tree | e4e787beafc2a82c601cd84710f95a097c001a5b /contrib/cirrus/networking.sh | |
parent | bf92ec523494859301e6337539bc0d97e232b80a (diff) | |
parent | 9fad55c87f0ae6d2d01c77d8c67c5883ccbdbfde (diff) | |
download | podman-956caf303a80105845b8e94b7018416abc59a474.tar.gz podman-956caf303a80105845b8e94b7018416abc59a474.tar.bz2 podman-956caf303a80105845b8e94b7018416abc59a474.zip |
Merge pull request #7070 from edsantiago/ci_fixes
CI - various fixes
Diffstat (limited to 'contrib/cirrus/networking.sh')
-rwxr-xr-x | contrib/cirrus/networking.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/cirrus/networking.sh b/contrib/cirrus/networking.sh index aeaf74035..2546fab71 100755 --- a/contrib/cirrus/networking.sh +++ b/contrib/cirrus/networking.sh @@ -10,7 +10,7 @@ while read host port do if [[ "$port" -eq "443" ]] then - item_test "SSL/TLS to $host:$port" "$(echo -n '' | openssl s_client -quiet -no_ign_eof -connect $host:$port &> /dev/null; echo $?)" -eq "0" + item_test "SSL/TLS to $host:$port" "$(echo -n '' | timeout 60 openssl s_client -quiet -no_ign_eof -connect $host:$port &> /dev/null; echo $?)" -eq "0" else item_test "Connect to $host:$port" "$(nc -zv -w 13 $host $port &> /dev/null; echo $?)" -eq 0 fi |