debian/cubicweb-ctl.logrotate
author Florent Cayré <florent.cayre@logilab.fr>
Wed, 18 Apr 2012 12:01:31 +0200
changeset 8389 94f26e3b09bf
parent 5840 60880c81e32e
permissions -rw-r--r--
fix static file serving when url has parameters (like cache busters do)

/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
}