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

6 lines
137 B
Text
Raw Normal View History

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