From a639ad94981dd26b07123d1b2dc48afaedde3210 Mon Sep 17 00:00:00 2001 From: Pavel Shirshov Date: Mon, 5 Nov 2018 15:13:36 -0800 Subject: [PATCH] Use pkill instead of killall --- scripts/fast-reboot | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/fast-reboot b/scripts/fast-reboot index 5cd354a55f1f..df7b14752d36 100755 --- a/scripts/fast-reboot +++ b/scripts/fast-reboot @@ -95,8 +95,8 @@ if [[ "$REBOOT_TYPE" = "warm-reboot" ]]; then fi # Kill bgpd to start the bgp graceful restart procedure -docker exec -i bgp killall -9 zebra -docker exec -i bgp killall -9 bgpd +docker exec -i bgp pkill -9 zebra +docker exec -i bgp pkill -9 bgpd # Kill lldp, otherwise it sends informotion about reboot docker kill lldp > /dev/null