diff options
author | paul <paul> | 2003-08-12 12:54:13 +0000 |
---|---|---|
committer | paul <paul> | 2003-08-12 12:54:13 +0000 |
commit | 6bd8fd3bb063a64d6e929910d297e2d8a760aea9 (patch) | |
tree | 983d515a6a29011136fe8be67b00552d248f8ea0 /redhat/quagga.logrotate | |
parent | 7190f4ea215c294abc269b6dfa12f5f114bd2ed6 (diff) |
2003-08-12 Paul Jakma <paul@dishone.st>
* redhat/: zebra.{logrotate,pam,spec.in} ->
quagga.{logrotate,pam,spec.in}.
Diffstat (limited to 'redhat/quagga.logrotate')
-rw-r--r-- | redhat/quagga.logrotate | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/redhat/quagga.logrotate b/redhat/quagga.logrotate new file mode 100644 index 00000000..2e352ff6 --- /dev/null +++ b/redhat/quagga.logrotate @@ -0,0 +1,59 @@ +/var/log/zebra/zebra.log { + notifempty + missingok + nocompress + weekly + postrotate + /usr/sbin/killall -USR1 zebra + endscript +} + +/var/log/zebra/bgpd.log { + notifempty + missingok + nocompress + weekly + postrotate + /usr/sbin/killall -USR1 bgpd + endscript +} + +/var/log/zebra/ospfd.log { + notifempty + missingok + nocompress + weekly + postrotate + /usr/sbin/killall -USR1 ospfd + endscript +} + +/var/log/zebra/ospf6d.log { + notifempty + missingok + nocompress + weekly + postrotate + /usr/sbin/killall -USR1 ospf6d + endscript +} + +/var/log/zebra/ripd.log { + notifempty + missingok + nocompress + weekly + postrotate + /usr/sbin/killall -USR1 ripd + endscript +} + +/var/log/zebra/ripngd.log { + notifempty + missingok + nocompress + weekly + postrotate + /usr/sbin/killall -USR1 ripngd + endscript +} |