mirror of
https://github.com/evilsocket/opensnitch.git
synced 2025-03-04 08:34:40 +01:00

Added a logrotate file to limit the size of the log and rotate as needeed. Changed daemon log level to important.
13 lines
235 B
Text
13 lines
235 B
Text
/var/log/opensnitchd.log {
|
|
rotate 7
|
|
# order of the fields is important
|
|
maxsize 50M
|
|
# we need this option in order to keep logging
|
|
copytruncate
|
|
missingok
|
|
notifempty
|
|
delaycompress
|
|
compress
|
|
create 640 root root
|
|
weekly
|
|
}
|