~launchpad-pqm/launchpad/devel

3691.170.7 by Stuart Bishop
Add our logrotate.conf being used in production so it doesn't get lost
1
/srv/launchpad.net/production-logs/launchpad*.log {
2
    rotate 5
3
    daily
4
    compress
5
    delaycompress
6
    compresscmd /usr/bin/bzip2
7
    uncompresscmd /usr/bin/bunzip2
8
    compressext .bz2
9
    compressoptions -9
10
    sharedscripts
11
    postrotate
12
        /srv/launchpad.net/initscript restart
13
    endscript
14
}
15