summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Worley <sworley@cumulusnetworks.com>2019-06-13 17:59:16 -0400
committerStephen Worley <sworley@cumulusnetworks.com>2019-06-19 17:20:24 -0400
commit3b96430b72989d398500c9bd49ce3c60be4f8575 (patch)
treea1ecf15ecdd927ddc40f03562bd2eccfe329e4c8
parentc103b19f6d0aea06e5b994b8e462de70ddaee5a8 (diff)
lib: Add vrrpd,sharpd to DAEMONS_* strings
Add vrrpd and sharpd to the DAEMONS_* list so they can be dispatched daemons independent commands such as `show work-queues` and `log-filter`. Signed-off-by: Stephen Worley <sworley@cumulusnetworks.com>
-rw-r--r--lib/command.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/command.h b/lib/command.h
index 95be7ccb6e..fbc0e7dd6d 100644
--- a/lib/command.h
+++ b/lib/command.h
@@ -414,9 +414,9 @@ struct cmd_node {
/* Dameons lists */
#define DAEMONS_STR \
- "For the zebra daemon\nFor the rip daemon\nFor the ripng daemon\nFor the ospf daemon\nFor the ospfv6 daemon\nFor the bgp daemon\nFor the isis daemon\nFor the pbr daemon\nFor the fabricd daemon\nFor the pim daemon\nFor the static daemon\n"
+ "For the zebra daemon\nFor the rip daemon\nFor the ripng daemon\nFor the ospf daemon\nFor the ospfv6 daemon\nFor the bgp daemon\nFor the isis daemon\nFor the pbr daemon\nFor the fabricd daemon\nFor the pim daemon\nFor the static daemon\nFor the sharpd daemon\nFor the vrrpd daemon\n"
#define DAEMONS_LIST \
- "<zebra|ripd|ripngd|ospfd|ospf6d|bgpd|isisd|pbrd|fabricd|pimd|staticd>"
+ "<zebra|ripd|ripngd|ospfd|ospf6d|bgpd|isisd|pbrd|fabricd|pimd|staticd|sharpd|vrrpd>"
/* Prototypes. */
extern void install_node(struct cmd_node *, int (*)(struct vty *));