mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-02 22:09:48 +00:00
18 lines
397 B
Plaintext
18 lines
397 B
Plaintext
/var/log/frr/*.log {
|
|
size 500k
|
|
sharedscripts
|
|
missingok
|
|
compress
|
|
rotate 14
|
|
create 640 frr frrvty
|
|
|
|
postrotate
|
|
for i in zebra bgpd ripd ospfd ripngd ospf6d isisd pimd; do
|
|
if [ -e /var/run/frr/$i.pid ] ; then
|
|
kill -USR1 `cat /var/run/frr/$i.pid`
|
|
fi
|
|
|
|
done
|
|
endscript
|
|
}
|