diff options
| author | Christian Hopps <chopps@labn.net> | 2023-04-26 17:50:46 -0400 | 
|---|---|---|
| committer | Christian Hopps <chopps@labn.net> | 2023-05-01 13:47:12 -0400 | 
| commit | cfa0facbf936fc6cc053fafea7d2b6fa8bccfc4c (patch) | |
| tree | 727b06f65947ae9702c691dfeb4dfe8951225ca8 /staticd | |
| parent | 13c426150fd4699466306d88a917df6493faf9bd (diff) | |
mgmtd: fully implement debug flags for mgmtd and clients
Signed-off-by: Christian Hopps <chopps@labn.net>
Diffstat (limited to 'staticd')
| -rw-r--r-- | staticd/static_vty.c | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/staticd/static_vty.c b/staticd/static_vty.c index 386b255a85..3e58a44aa7 100644 --- a/staticd/static_vty.c +++ b/staticd/static_vty.c @@ -13,6 +13,7 @@  #include "nexthop.h"  #include "table.h"  #include "srcdest_table.h" +#include "mgmt_be_client.h"  #include "mpls.h"  #include "northbound.h"  #include "libfrr.h" @@ -1553,4 +1554,6 @@ void static_vty_init(void)  	install_element(ENABLE_NODE, &debug_staticd_cmd);  	install_element(CONFIG_NODE, &debug_staticd_cmd); + +	mgmt_be_client_lib_vty_init();  }  | 
