debian: Add pimd to logrotate script

Add pimd to the log rotate script so that the USR1 signal
can be sent to pimd to tell it to rotate the log.

Ticket: CM-11253
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
Donald Sharp 2016-05-26 19:41:58 -04:00
parent df696e3f7c
commit 705d6afb05

View File

@ -7,7 +7,7 @@
create 640 quagga quaggavty
postrotate
for i in zebra bgpd ripd ospfd ripngd ospf6d isisd; do
for i in zebra bgpd ripd ospfd ripngd ospf6d isisd pimd; do
if [ -e /var/run/quagga/$i.pid ] ; then
kill -USR1 `cat /var/run/quagga/$i.pid`
fi