Created
October 12, 2020 05:38
-
-
Save radiofrequency/21593036ddca1138235a7184902262f7 to your computer and use it in GitHub Desktop.
show lets encrypt certificates that are expired
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unix_todate=$(date -d "${todate}" "+%s") | |
for pem in /etc/letsencrypt/live/*/cert.pem; do | |
if [ $(date --date="$(openssl x509 -enddate -noout -in "$pem"|cut -d= -f 2)" "+%s") -le $unix_todate ]; | |
then | |
printf '%s: %s\n' \ | |
"$(date --date="$(openssl x509 -enddate -noout -in "$pem"|cut -d= -f 2)" --iso-8601)" \ | |
"$pem" | |
fi | |
done | sort |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment