wolfSSL: Use LIBWOLFSSL_VERSION_HEX to decide whether or not to use WOLFSSL_X509_V_OK
[privoxy.git] / debian / logrotate
1 /var/log/privoxy/logfile /var/log/privoxy/jarfile /var/log/privoxy/errorfile {
2         create 0640 privoxy adm
3         missingok
4         weekly
5         rotate 7
6         compress
7         sharedscripts
8         postrotate
9                 if which invoke-rc.d >/dev/null 2>&1; then
10                         invoke-rc.d privoxy rotate > /dev/null
11                 else
12                         if [ -f /run/privoxy.pid ]; then
13                                 /etc/init.d/privoxy rotate > /dev/null
14                         fi
15                 fi
16         endscript
17 }