Annotation of embedaddon/quagga/redhat/quagga.logrotate, revision 1.1

1.1     ! misho       1: /var/log/quagga/zebra.log {
        !             2:     notifempty
        !             3:     missingok
        !             4:     postrotate
        !             5:        /bin/kill -USR1 `cat /var/run/quagga/zebra.pid 2> /dev/null` 2> /dev/null || true
        !             6:     endscript
        !             7: }
        !             8: 
        !             9: /var/log/quagga/bgpd.log {
        !            10:     notifempty
        !            11:     missingok
        !            12:     postrotate
        !            13:        /bin/kill -USR1 `cat /var/run/quagga/bgpd.pid 2> /dev/null` 2> /dev/null || true
        !            14:     endscript
        !            15: }
        !            16: 
        !            17: /var/log/quagga/ospfd.log {
        !            18:     notifempty
        !            19:     missingok
        !            20:     postrotate
        !            21:        /bin/kill -USR1 `cat /var/run/quagga/ospfd.pid 2> /dev/null` 2> /dev/null || true
        !            22:     endscript
        !            23: }
        !            24: 
        !            25: /var/log/quagga/ospf6d.log {
        !            26:     notifempty
        !            27:     missingok
        !            28:     postrotate
        !            29:        /bin/kill -USR1 `cat /var/run/quagga/ospf6d.pid 2> /dev/null` 2> /dev/null || true
        !            30:     endscript
        !            31: }
        !            32: 
        !            33: /var/log/quagga/ripd.log {
        !            34:     notifempty
        !            35:     missingok
        !            36:     postrotate
        !            37:        /bin/kill -USR1 `cat /var/run/quagga/ripd.pid 2> /dev/null` 2> /dev/null || true
        !            38:     endscript
        !            39: }
        !            40: 
        !            41: /var/log/quagga/ripngd.log {
        !            42:     notifempty
        !            43:     missingok
        !            44:     postrotate
        !            45:        /bin/kill -USR1 `cat /var/run/quagga/ripngd.pid 2> /dev/null` 2> /dev/null || true
        !            46:     endscript
        !            47: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>