Skip to content

Commit 1908631

Browse files
Merge pull request sonic-net#365 from pavel-shirshov/pavelsh/fix_bgp
[fast-reboot]: Use pkill instead of killall
2 parents f184f91 + a639ad9 commit 1908631

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/fast-reboot

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ if [[ "$REBOOT_TYPE" = "warm-reboot" ]]; then
9595
fi
9696

9797
# Kill bgpd to start the bgp graceful restart procedure
98-
docker exec -i bgp killall -9 zebra
99-
docker exec -i bgp killall -9 bgpd
98+
docker exec -i bgp pkill -9 zebra
99+
docker exec -i bgp pkill -9 bgpd
100100

101101
# Kill lldp, otherwise it sends informotion about reboot
102102
docker kill lldp > /dev/null

0 commit comments

Comments
 (0)