projects
/
privoxy.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
privoxy-log-parser: Highlight 'The last 6945 bytes of the encrypted request body...
[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