diff options
author | Igor Ryzhov <iryzhov@nfware.com> | 2023-11-17 02:27:55 +0100 |
---|---|---|
committer | Igor Ryzhov <iryzhov@nfware.com> | 2023-11-17 03:18:28 +0100 |
commit | 649f04d679658b35ebfec5474988543c108af3c5 (patch) | |
tree | 8ad76cde15c4f0c5a82db6b7c9d63c194feaa0fd /staticd | |
parent | Merge pull request #14807 from Keelan10/fix-babel-int-delete-leak (diff) | |
download | frr-649f04d679658b35ebfec5474988543c108af3c5.tar.xz frr-649f04d679658b35ebfec5474988543c108af3c5.zip |
staticd: fix debug commands
Debug commands should be installed in staticd, not in mgmtd.
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'staticd')
-rw-r--r-- | staticd/static_vty.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/staticd/static_vty.c b/staticd/static_vty.c index 4ca3c2e92..c2c260cfb 100644 --- a/staticd/static_vty.c +++ b/staticd/static_vty.c @@ -1574,6 +1574,8 @@ int static_path_list_cli_cmp(const struct lyd_node *dnode1, return (int)distance1 - (int)distance2; } +#ifndef INCLUDE_MGMTD_CMDDEFS_ONLY + DEFPY_YANG(debug_staticd, debug_staticd_cmd, "[no] debug static [{events$events|route$route|bfd$bfd}]", NO_STR DEBUG_STR STATICD_STR @@ -1581,18 +1583,15 @@ DEFPY_YANG(debug_staticd, debug_staticd_cmd, "Debug route\n" "Debug bfd\n") { -#ifndef INCLUDE_MGMTD_CMDDEFS_ONLY /* If no specific category, change all */ if (strmatch(argv[argc - 1]->text, "static")) static_debug_set(vty->node, !no, true, true, true); else static_debug_set(vty->node, !no, !!events, !!route, !!bfd); -#endif /* ifndef INCLUDE_MGMTD_CMDDEFS_ONLY */ return CMD_SUCCESS; } -#ifndef INCLUDE_MGMTD_CMDDEFS_ONLY DEFPY(staticd_show_bfd_routes, staticd_show_bfd_routes_cmd, "show bfd static route [json]$isjson", SHOW_STR @@ -1634,6 +1633,8 @@ void static_vty_init(void) { #ifndef INCLUDE_MGMTD_CMDDEFS_ONLY install_node(&debug_node); + install_element(ENABLE_NODE, &debug_staticd_cmd); + install_element(CONFIG_NODE, &debug_staticd_cmd); install_element(ENABLE_NODE, &show_debugging_static_cmd); install_element(ENABLE_NODE, &staticd_show_bfd_routes_cmd); #endif /* ifndef INCLUDE_MGMTD_CMDDEFS_ONLY */ @@ -1654,8 +1655,5 @@ void static_vty_init(void) install_element(CONFIG_NODE, &ipv6_route_cmd); install_element(VRF_NODE, &ipv6_route_vrf_cmd); - install_element(ENABLE_NODE, &debug_staticd_cmd); - install_element(CONFIG_NODE, &debug_staticd_cmd); - mgmt_be_client_lib_vty_init(); } |