summaryrefslogtreecommitdiffstats
path: root/vtysh
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2016-02-02 15:28:23 +0100
committerDonald Sharp <sharpd@cumulusnetworks.com>2016-02-02 15:29:56 +0100
commit96f7d5a8dbabb1464bd576f018cb22c4a9038d0f (patch)
tree5d580e4f7e53e2b50ed41510aba5862723c0cb4f /vtysh
parentbgpd: Add the ability to use a VRF to bgp (diff)
downloadfrr-96f7d5a8dbabb1464bd576f018cb22c4a9038d0f.tar.xz
frr-96f7d5a8dbabb1464bd576f018cb22c4a9038d0f.zip
vtysh: Fix vrf submode to call correct daemons
The vrf-submode was incorrectly calling sub-daemons that it should not be doing so. Ticket: CM-9076 Reviewed-by: Don Slice <dslice@cumulusnetworks.com> Testing: See Bug Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'vtysh')
-rw-r--r--vtysh/vtysh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vtysh/vtysh.h b/vtysh/vtysh.h
index 6126afab7..5bbe906ef 100644
--- a/vtysh/vtysh.h
+++ b/vtysh/vtysh.h
@@ -33,7 +33,7 @@
#define VTYSH_ALL VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_ISISD|VTYSH_BABELD
#define VTYSH_RMAP VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_BABELD
#define VTYSH_INTERFACE VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_ISISD|VTYSH_BABELD
-#define VTYSH_VRF VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_ISISD|VTYSH_BABELD //Pending: see if all other components are to be added.
+#define VTYSH_VRF VTYSH_ZEBRA
/* vtysh local configuration file. */
#define VTYSH_DEFAULT_CONFIG "vtysh.conf"