privoxy-log-parser: Update Privoxy man page reference now that the section is 8
[privoxy.git] / debian / privoxy.cron.daily
1 #!/bin/sh
2 #
3 # Expire https inspection certificates
4
5 set -e
6
7 CERTDIR=/var/lib/privoxy/certs
8 EXPIREDAYS=90
9
10 if [ -d $CERTDIR ]; then
11     find $CERTDIR -type f -mtime +$EXPIREDAYS | xargs -r rm -f
12 fi