summaryrefslogtreecommitdiff
path: root/debian/nova-compute.logrotate
blob: 9604418e460bcd1ada2eb9dc5f0940cd1f8aacaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/var/log/nova/nova-compute.log {
    daily
    missingok
    compress
    delaycompress
    notifempty
    postrotate
        if dpkg-vendor --derives-from ubuntu ; then
            service nova-compute restart >/dev/null 2>&1 || true
        else
            invoke-rc.d nova-compute restart >/dev/null 2>&1 || true
        fi
    endscript
}