1
0
Fork 0
mirror of https://github.com/kastdeur/dotfiles.git synced 2024-10-05 08:04:41 +02:00
dotfiles/bash/scriptlets/cert_status

5 lines
137 B
Text

# Report on last renewing of ssl certificates
CERTSTAT=~/cert_status
if [ -r $CERTSTAT ]; then
echo "Last certs: $(cat $CERTSTAT)";
fi;