From d2c1e06d83d6793c1de311c099d31cc053a2826e Mon Sep 17 00:00:00 2001 From: Philippe Guibert Date: Wed, 12 Apr 2017 15:22:41 +0200 Subject: vtysh: remove deprecated HAVE_EVPN flag This flag prevents from entering into evpn address-family node, when calling command from vtysh. Signed-off-by: Philippe Guibert --- vtysh/vtysh.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'vtysh') diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c index d0038ea3c..424597c0d 100644 --- a/vtysh/vtysh.c +++ b/vtysh/vtysh.c @@ -1221,9 +1221,7 @@ DEFUNSH (VTYSH_BGPD, "Layer2 VPN Address family\n" "Ethernet Virtual Private Network Subsequent Address Family\n") { -#if defined(HAVE_EVPN) vty->node = BGP_EVPN_NODE; -#endif /* HAVE_EVPN */ return CMD_SUCCESS; } -- cgit v1.2.3 From 27821f6a5a1d469e878dc4d35a87475c6643141f Mon Sep 17 00:00:00 2001 From: Daniel Walton Date: Mon, 24 Apr 2017 18:22:29 +0000 Subject: vtysh: "Command incomplete: log syslog" Signed-off-by: Daniel Walton Before ====== root@spine-1[~]# cat /etc/frr/frr.conf no log monitor ! service integrated-vtysh-config ! log syslog ! log syslog informational ! line vty ! root@spine-1[~]# root@spine-1[~]# vtysh -m -f /etc/frr/frr.conf no log monitor ! service integrated-vtysh-config ! line 5: % Command incomplete: log syslog root@spine-1[~]# After ===== root@spine-1[~]# vtysh -m -f /etc/frr/frr.conf no log monitor ! service integrated-vtysh-config ! log syslog ! log syslog informational ! line vty ! end root@spine-1[~]# --- vtysh/vtysh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vtysh') diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c index d0038ea3c..74f865b61 100644 --- a/vtysh/vtysh.c +++ b/vtysh/vtysh.c @@ -2165,7 +2165,7 @@ DEFUNSH (VTYSH_ALL, DEFUNSH (VTYSH_ALL, vtysh_log_syslog, vtysh_log_syslog_cmd, - "log syslog ", + "log syslog []", "Logging control\n" "Set syslog logging level\n" LOG_LEVEL_DESC) -- cgit v1.2.3