diff options
author | paul <paul> | 2003-01-18 00:22:08 +0000 |
---|---|---|
committer | paul <paul> | 2003-01-18 00:22:08 +0000 |
commit | 788cdc6d5e7cf2d7fa5d6d0f743432f8f4c7048a (patch) | |
tree | 387f28ea130b5325aefa2de5358971fb7fcf78ff /ports/redhat/zebra.logrotate | |
parent | 09e4efdcb22ac13af3f6e3a38158871ed140e5e0 (diff) |
Added RedHat related files, (init, logrotate, pam, rpm spec)
Diffstat (limited to 'ports/redhat/zebra.logrotate')
-rw-r--r-- | ports/redhat/zebra.logrotate | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/ports/redhat/zebra.logrotate b/ports/redhat/zebra.logrotate new file mode 100644 index 00000000..2e352ff6 --- /dev/null +++ b/ports/redhat/zebra.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 +} |