debian/cubicweb-ctl.logrotate
author Julien Cristau <julien.cristau@logilab.fr>
Tue, 23 Jun 2015 15:50:18 +0200
changeset 10450 c5c9e5b6fde0
parent 5840 60880c81e32e
permissions -rw-r--r--
[server/rql2sql] fix spelling in comment Not that I understand what that sentence means.

/var/log/cubicweb/*.log {
        weekly
        missingok
        rotate 10
        compress
        delaycompress
        notifempty
        create 640 root adm
        sharedscripts
        postrotate
           if [ -x /usr/sbin/invoke-rc.d ]; then \
              invoke-rc.d cubicweb reload > /dev/null 2>&1; \
           else \
              /etc/init.d/cubicweb reload > /dev/null 2>&1; \
           fi; \
        endscript
}