diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-02-23 21:06:59 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-02-23 21:06:59 +0100 |
commit | 9b155c8b8fd49aa2a1a01de959e13e7a7b095f78 (patch) | |
tree | 3cad43793d67a1b20d86e76174793f2225c46a9c /tools | |
parent | Merge branch 'cmaster' of ssh://stash.cumulusnetworks.com:7999/quag/quagga in... (diff) | |
download | frr-9b155c8b8fd49aa2a1a01de959e13e7a7b095f78.tar.xz frr-9b155c8b8fd49aa2a1a01de959e13e7a7b095f78.zip |
debian: Fixup removal of .pid and .vty files
The <daemon>.pid and <daemon>.vty files were not being
removed on shutdown. This was causing issues w/
logrotate becaue it depends on pid files being correct
about what is running in order to not error out.
Fixed some additional debugs accidently left in the quagga
script.
Ticket: CM-9293
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Reviewed-by: Daniel Walton <dwalton@cumulusnetworks.com>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/quagga | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/quagga b/tools/quagga index f96fede6e..21858aab6 100755 --- a/tools/quagga +++ b/tools/quagga @@ -22,7 +22,6 @@ startup() start_ospfd_multiinstance() { for instance in $MI; do - echo "Starting $instance" startup ospfd@$instance done } @@ -42,7 +41,6 @@ start_daemons() stop_ospfd_multiinstance() { for instance in $MI; do - echo "Stopping instance: $instance" /bin/systemctl stop ospfd@$instance done } |