move cert_expiry to dedicated bin

This commit is contained in:
David Todd
2020-03-25 13:55:22 -05:00
parent 57ab4c0f64
commit 71820787b5

15
bin/cert_expiry Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
# Prints the expiration dates of all TLS Certificates in a directory
# This is usually pem, but can also be crt
if [[ -z $1 ]]; then
echo "certificate type not set, defaulting to pem"
filetype="pem"
else
filetype=$1
fi
for filename in ./*.${filetype}; do
echo -n "${filename} expires on: "
openssl x509 -noout -dates -in "${filename}" | sed -n '/notAfter/p' | sed 's/^.\{9\}//'
done