mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
322 B
Plaintext
14 lines
322 B
Plaintext
8 years ago
|
# Sample /etc/logrotate.d/suricata configuration file.
|
||
|
@e_logdir@*.log @e_logdir@*.json {
|
||
|
daily
|
||
|
missingok
|
||
|
rotate 5
|
||
|
compress
|
||
|
delaycompress
|
||
|
minsize 500k
|
||
|
sharedscripts
|
||
|
postrotate
|
||
|
/bin/kill -HUP `cat @e_rundir@suricata.pid 2> /dev/null` 2> /dev/null || true
|
||
|
endscript
|
||
|
}
|