summaryrefslogtreecommitdiffstats
path: root/vtysh
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@diac24.net>2018-10-23 12:46:09 +0200
committerGitHub <noreply@github.com>2018-10-23 12:46:09 +0200
commit25aea4b23107d9a64dfecef1c01b61063afbf3ed (patch)
treef715829f5cadc38cd215f20c0eeebb9fff0b0660 /vtysh
parentMerge branch 'pull/3165' (diff)
parentvtysh: Add some missing daemons to some commands in vtysh (diff)
downloadfrr-25aea4b23107d9a64dfecef1c01b61063afbf3ed.tar.xz
frr-25aea4b23107d9a64dfecef1c01b61063afbf3ed.zip
Merge pull request #3175 from donaldsharp/show_run_static
vtysh: Add some missing daemons to some commands in vtysh
Diffstat (limited to 'vtysh')
-rw-r--r--vtysh/vtysh.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c
index 8ed11f187..a2154a984 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 <zebra|ripd|ripngd|ospfd|ospf6d|bgpd|isisd|pbrd|fabricd>",
+ "show work-queues <zebra|ripd|ripngd|ospfd|ospf6d|bgpd|isisd|pbrd|fabricd|pimd|staticd>",
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 [<zebra|ripd|ripngd|ospfd|ospf6d|ldpd|bgpd|isisd|fabricd|pimd>]",
+ "write terminal [<zebra|ripd|ripngd|ospfd|ospf6d|ldpd|bgpd|isisd|fabricd|pimd|staticd>]",
"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 [<zebra|ripd|ripngd|ospfd|ospf6d|ldpd|bgpd|isisd|fabricd|pimd>]",
+ "show running-config [<zebra|ripd|ripngd|ospfd|ospf6d|ldpd|bgpd|isisd|fabricd|pimd|staticd>]",
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);
}