From: Donald Sharp Date: Tue, 2 Feb 2016 14:28:23 +0000 (-0800) Subject: vtysh: Fix vrf submode to call correct daemons X-Git-Tag: frr-2.0-rc1~1144 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=96f7d5a8dbabb1464bd576f018cb22c4a9038d0f;p=mirror%2Ffrr.git 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 Testing: See Bug Signed-off-by: Donald Sharp --- diff --git a/vtysh/vtysh.h b/vtysh/vtysh.h index 6126afab7a..5bbe906efb 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"