From: Donald Sharp Date: Sun, 14 Oct 2018 23:03:57 +0000 (-0400) Subject: vtysh: Add some missing daemons to some commands in vtysh X-Git-Tag: frr-7.1-dev~250^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=2dd0b3f49217b8dc94294f8cd069895f18503f23;p=mirror%2Ffrr.git vtysh: Add some missing daemons to some commands in vtysh Fixes: #3173 Signed-off-by: Donald Sharp --- diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c index 6a92b90813..711f1c3130 100644 --- a/vtysh/vtysh.c +++ b/vtysh/vtysh.c @@ -2265,7 +2265,7 @@ DEFUN (vtysh_show_work_queues, DEFUN (vtysh_show_work_queues_daemon, vtysh_show_work_queues_daemon_cmd, - "show work-queues ", + "show work-queues ", SHOW_STR "Work Queue information\n" "For the zebra daemon\n" @@ -2276,7 +2276,9 @@ DEFUN (vtysh_show_work_queues_daemon, "For the bgp daemon\n" "For the isis daemon\n" "For the pbr daemon\n" - "For the fabricd daemon\n") + "For the fabricd daemon\n" + "For the pim daemon\n" + "For the static daemon\n") { int idx_protocol = 2; unsigned int i; @@ -2614,7 +2616,7 @@ DEFUNSH(VTYSH_ALL, no_vtysh_config_enable_password, DEFUN (vtysh_write_terminal, vtysh_write_terminal_cmd, - "write terminal []", + "write terminal []", "Write running configuration to memory, network, or terminal\n" "Write to terminal\n" "For the zebra daemon\n" @@ -2626,7 +2628,8 @@ DEFUN (vtysh_write_terminal, "For the bgp daemon\n" "For the isis daemon\n" "For the fabricd daemon\n" - "For the pim daemon\n") + "For the pim daemon\n" + "For the static daemon\n") { unsigned int i; char line[] = "do write terminal\n"; @@ -2652,7 +2655,7 @@ DEFUN (vtysh_write_terminal, DEFUN (vtysh_show_running_config, vtysh_show_running_config_cmd, - "show running-config []", + "show running-config []", SHOW_STR "Current operating configuration\n" "For the zebra daemon\n" @@ -2664,7 +2667,8 @@ DEFUN (vtysh_show_running_config, "For the bgp daemon\n" "For the isis daemon\n" "For the fabricd daemon\n" - "For the pim daemon\n") + "For the pim daemon\n" + "For the static daemon\n") { return vtysh_write_terminal(self, vty, argc, argv); }