summaryrefslogtreecommitdiffstats
path: root/watchfrr/watchfrr.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2023-10-18 20:30:03 +0200
committerDonald Sharp <sharpd@nvidia.com>2023-10-18 20:30:03 +0200
commitc168244b9910bccafcb78bf1bb96a6fd569c6302 (patch)
treea39d2493c13994663f9272f28cd7dfb2749adf27 /watchfrr/watchfrr.c
parentMerge pull request #14607 from mobash-rasool/fixes2 (diff)
downloadfrr-c168244b9910bccafcb78bf1bb96a6fd569c6302.tar.xz
frr-c168244b9910bccafcb78bf1bb96a6fd569c6302.zip
watchfrr: Extend ignore option to daemon being killed
When testing GR features, it is desired to kill bgp (or really any daemon )and not immediately have bgp start up again. Modify the code to not attempt to restart the daemon by hand to let us developers work when the `watchfrr ignore XXX` command is issued. Testing: watchfrr ignore bgpd kill -9 bgpd start bgp by `/usr/lib/frr/watchfrr.sh start bgpd` at some point in time in the future leaf-1# show watchfrr watchfrr global phase: Idle Restart Command: "/usr/lib/frr/watchfrr.sh restart %s" Start Command: "/usr/lib/frr/watchfrr.sh start %s" Stop Command: "/usr/lib/frr/watchfrr.sh stop %s" Min Restart Interval: 60 Max Restart Interval: 600 Restart Timeout: 90 zebra Up bgpd Up/Ignoring Timeout staticd Up leaf-1# Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'watchfrr/watchfrr.c')
-rw-r--r--watchfrr/watchfrr.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/watchfrr/watchfrr.c b/watchfrr/watchfrr.c
index 34acf683e..73a033170 100644
--- a/watchfrr/watchfrr.c
+++ b/watchfrr/watchfrr.c
@@ -600,6 +600,9 @@ static void daemon_restarting_operational(struct event *thread)
static void daemon_down(struct daemon *dmn, const char *why)
{
+ if (dmn->ignore_timeout)
+ return;
+
if (IS_UP(dmn) || (dmn->state == DAEMON_INIT))
flog_err(EC_WATCHFRR_CONNECTION, "%s state -> down : %s",
dmn->name, why);