diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-07-22 21:35:36 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-07-22 21:35:36 +0200 |
commit | b9d9b73d586fb2bd705d035634a004f742bd5240 (patch) | |
tree | 909bcd3fc491493db5b03b4e1418fd6c288d4030 /debian | |
parent | The MD5 password configured for a BGP peer was incorrectly getting (diff) | |
download | frr-b9d9b73d586fb2bd705d035634a004f742bd5240.tar.xz frr-b9d9b73d586fb2bd705d035634a004f742bd5240.zip |
quagga-fix-stop-vty.patch
When stopping quagga, we do not wait for quagga to
finish shutting down before we start attempting
to delete the sockets for the various protocols.
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/quagga.init.d | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/quagga.init.d b/debian/quagga.init.d index dbf71ce88..939dc5a8e 100755 --- a/debian/quagga.init.d +++ b/debian/quagga.init.d @@ -153,7 +153,7 @@ stop() else PIDFILE=`pidfile $inst` PID=`cat $PIDFILE 2>/dev/null` - start-stop-daemon --stop --quiet --oknodo --pidfile "$PIDFILE" --exec "$D_PATH/$1" + start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --oknodo --pidfile "$PIDFILE" --exec "$D_PATH/$1" # # Now we have to wait until $DAEMON has _really_ stopped. # |