diff options
author | Martin Winter <mwinter@opensourcerouting.org> | 2017-04-15 11:00:15 +0200 |
---|---|---|
committer | Martin Winter <mwinter@opensourcerouting.org> | 2017-04-15 11:00:15 +0200 |
commit | 36d85ca8e302d803e864854af1b64b24b1ce78b4 (patch) | |
tree | de078275a4e1e04cc68a84cc4de4a13180316119 /watchfrr | |
parent | redhat: Add python2 build requirement to pythontools sub package (diff) | |
download | frr-36d85ca8e302d803e864854af1b64b24b1ce78b4.tar.xz frr-36d85ca8e302d803e864854af1b64b24b1ce78b4.zip |
watchfrr: Remove the HAVE_CUMULUS around the watchfrr.started file. It's always useful
Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
Diffstat (limited to 'watchfrr')
-rw-r--r-- | watchfrr/watchfrr.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/watchfrr/watchfrr.c b/watchfrr/watchfrr.c index 83f00252c..f6aa7eeab 100644 --- a/watchfrr/watchfrr.c +++ b/watchfrr/watchfrr.c @@ -703,12 +703,10 @@ daemon_send_ready (void) static int sent = 0; if (!sent && gs.numdown == 0) { -#if defined (HAVE_CUMULUS) FILE *fp; fp = fopen(DAEMON_VTY_DIR "/watchfrr.started", "w"); fclose(fp); -#endif zlog_notice ("Watchfrr: Notifying Systemd we are up and running"); systemd_send_started(master, 0); sent = 1; |