File mongodb.logrotate of Package mongodb
1
/var/log/mongodb/*.log {
2
weekly
3
rotate 10
4
copytruncate
5
delaycompress
6
compress
7
notifempty
8
missingok
9
postrotate
10
/bin/kill -USR1 `cat /var/run/mongodb/mongodb.pid 2>/dev/null` 2> /dev/null|| true
11
endscript
12
}