17 lines
309 B
Plaintext
17 lines
309 B
Plaintext
/opt/certpusher/logs/*.log {
|
|
daily
|
|
rotate 7
|
|
compress
|
|
delaycompress
|
|
missingok
|
|
notifempty
|
|
create 0644 root root
|
|
dateext
|
|
dateformat -%Y%m%d
|
|
extension .log
|
|
nomail
|
|
postrotate
|
|
find /opt/certpusher/logs -name "*.log*" -type f -mtime +3 -delete
|
|
endscript
|
|
}
|