Initial commit

This commit is contained in:
Daniel Winzen
2017-04-30 19:32:42 +02:00
commit e0b35fb943
222 changed files with 8816 additions and 0 deletions

15
etc/logrotate.d/tor Normal file
View File

@ -0,0 +1,15 @@
/var/log/tor/*log {
daily
rotate 2
compress
delaycompress
missingok
notifempty
create 0640 debian-tor adm
sharedscripts
postrotate
if service tor status > /dev/null; then
service tor reload > /dev/null
fi
endscript
}