diff options
author | Rafael Zalamena <rzalamena@opensourcerouting.org> | 2019-09-30 20:01:46 +0200 |
---|---|---|
committer | Rafael Zalamena <rzalamena@opensourcerouting.org> | 2020-02-04 18:05:43 +0100 |
commit | 2b3e4807ecf4d2586fe4d651b904967ea8d759c0 (patch) | |
tree | 4aff697d2864eeae02c96d8395cfa47ee3ecc091 /vtysh | |
parent | lib: implement route map northbound (diff) | |
download | frr-2b3e4807ecf4d2586fe4d651b904967ea8d759c0.tar.xz frr-2b3e4807ecf4d2586fe4d651b904967ea8d759c0.zip |
lib: implement new route map CLI
Use the northbound back-end instead of the old route map CLI.
Signed-off-by: Rafael Zalamena <rzalamena@opensourcerouting.org>
Diffstat (limited to 'vtysh')
-rwxr-xr-x | vtysh/extract.pl.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vtysh/extract.pl.in b/vtysh/extract.pl.in index 13413888b..b7ac0abe0 100755 --- a/vtysh/extract.pl.in +++ b/vtysh/extract.pl.in @@ -87,7 +87,7 @@ sub scan_file { if ($file =~ /lib\/keychain\.c$/) { $protocol = "VTYSH_RIPD|VTYSH_EIGRPD"; } - elsif ($file =~ /lib\/routemap\.c$/) { + elsif ($file =~ /lib\/routemap\.c$/ || $file =~ /lib\/routemap_cli\.c$/) { $protocol = "VTYSH_RMAP"; } elsif ($file =~ /lib\/vrf\.c$/) { |