diff options
author | David Ward <david.ward@ll.mit.edu> | 2012-04-29 16:47:06 -0400 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2012-05-01 17:51:26 +0200 |
commit | 0bd268a5232f91c8cf01366b7ae43bcfed1dc8fe (patch) | |
tree | cf81538bb625b6c900c3d0986c9eaf7c09178265 /redhat/quagga.logrotate | |
parent | 7b0df9c5bad83e2a2eb047e84edc00b3bc1d562c (diff) |
redhat: add logrotate configuration for babeld and isisd
Signed-off-by: David Ward <david.ward@ll.mit.edu>
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'redhat/quagga.logrotate')
-rw-r--r-- | redhat/quagga.logrotate | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/redhat/quagga.logrotate b/redhat/quagga.logrotate index 1b453d16..9756a781 100644 --- a/redhat/quagga.logrotate +++ b/redhat/quagga.logrotate @@ -6,6 +6,14 @@ endscript } +/var/log/quagga/babeld.log { + notifempty + missingok + postrotate + /bin/kill -USR1 `cat /var/run/quagga/babeld.pid 2> /dev/null` 2> /dev/null || true + endscript +} + /var/log/quagga/bgpd.log { notifempty missingok @@ -14,6 +22,14 @@ endscript } +/var/log/quagga/isisd.log { + notifempty + missingok + postrotate + /bin/kill -USR1 `cat /var/run/quagga/isisd.pid 2> /dev/null` 2> /dev/null || true + endscript +} + /var/log/quagga/ospfd.log { notifempty missingok |