debian/cubicweb-ctl.logrotate
author Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
Fri, 25 Sep 2009 11:01:23 +0200
branchstable
changeset 3470 c9c8b231db7b
parent 0 b97547f5f1fa
child 5806 9ef0e95f4d2b
permissions -rw-r--r--
[forms] fix form_needs_multipart implementation problem ------- The current implementation of form_needs_multipart goes down recursively in all inlined forms to check if one of them needs a multipart enctype. If we have a relation definition as X part_of X, the previous implementation potentially lead to an infinite recursion

/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; \
           else \
              /etc/init.d/cubicweb reload > /dev/null; \
           fi; \
        endscript
}