5ba2c58ea600a81b0f5f8bc38a5c43b1500d9099 jcasper Wed Mar 18 14:56:48 2026 -0700 Adding psygene server to the certs check script, per Erich's request diff --git src/utils/qa/checkHTTPS src/utils/qa/checkHTTPS index 7233488dc64..d1c2bd8630c 100755 --- src/utils/qa/checkHTTPS +++ src/utils/qa/checkHTTPS @@ -20,29 +20,30 @@ hgdownload2.gi.ucsc.edu \ hgdownload2.soe.ucsc.edu \ hgdownload.soe.ucsc.edu \ hgdownload-test.gi.ucsc.edu \ redmine.soe.ucsc.edu \ hgwdev.gi.ucsc.edu \ hgwalpha.soe.ucsc.edu \ hgwbeta.soe.ucsc.edu \ hgwbeta.cse.ucsc.edu \ hgwbeta-public.soe.ucsc.edu \ api.genome.ucsc.edu \ apibeta.soe.ucsc.edu \ hgw0.soe.ucsc.edu \ hgw1.soe.ucsc.edu \ hgw2.soe.ucsc.edu \ -redmine.soe.ucsc.edu +redmine.soe.ucsc.edu \ +psygene.gi.ucsc.edu do expiryDate=$(echo -n | openssl s_client -servername $site -connect $site:443 2>/dev/null | openssl x509 -noout -dates | grep After | sed -e "s/23:59:59\|\=\|notAfter\|GMT\|//g") expiryEpoch=$(date -d"$expiryDate" +%s) if (("$wiggleRoom" > "$expiryEpoch")) then output="$output$site certificate expires on $expiryDate\n" fi done if [ -n "$output" ] then echo -e "$output" | mail -s "Site Certificates expiring in < 14 days" -S 'from=Reply All Includes All QA <browser-qa@soe.ucsc.edu>' "${recipients[@]}" fi