summaryrefslogtreecommitdiffstats
path: root/scripts/certs/cert-check
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/certs/cert-check')
-rwxr-xr-xscripts/certs/cert-check6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/certs/cert-check b/scripts/certs/cert-check
index 88a6fb2..5c50a1f 100755
--- a/scripts/certs/cert-check
+++ b/scripts/certs/cert-check
@@ -83,9 +83,11 @@ cert_pick_from_server() {
echo "Trying from server.." >&2
local server=$1
local port=443 # https
- [ $# -ge 2 ] && port=$2
+ local opts=
+ [ $# -ge 2 ] && [[ "${2}" =~ ^[^-].* ]] && shift && port=$1
+ [ $# -ge 2 ] && opts=$2
( echo; sleep 2 ) \
- | openssl s_client -connect "${server}:${port}" -crlf 2>/dev/null \
+ | openssl s_client -connect "${server}:${port}" -crlf $opts 2>/dev/null \
| sed -ne '/-----BEGIN CERTIFICATE-----/,/-----END CERTIFICATE-----/p' \
| awk '/-BEGIN CERTIFICATE-/{if(++i > 1){exit;}}{print;}'
}