mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
7d275467da
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
18 lines
307 B
Text
18 lines
307 B
Text
/var/log/quagga/*.log {
|
|
su quagga quagga
|
|
daily
|
|
sharedscripts
|
|
missingok
|
|
compress
|
|
rotate 14
|
|
create 640 quagga quagga
|
|
|
|
postrotate
|
|
for i in zebra bgpd ripd ospfd ripngd ospf6d isisd; do
|
|
if [ -e /var/run/quagga/$i.pid ] ; then
|
|
kill -USR1 $(cat /var/run/quagga/$i.pid)
|
|
fi
|
|
|
|
done
|
|
endscript
|
|
}
|