diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-01-26 04:04:49 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-01-26 04:04:49 +0100 |
commit | fd6ab73ea69bb4826e9b118cfea157ee5efdc5f3 (patch) | |
tree | f2ca98a895254ac80835a882035ee94149503370 /vtysh | |
parent | bgpd: Fix '[no] labels LABELLIST...' command (diff) | |
download | frr-fd6ab73ea69bb4826e9b118cfea157ee5efdc5f3.tar.xz frr-fd6ab73ea69bb4826e9b118cfea157ee5efdc5f3.zip |
vtysh: Add 'vrf-policy NAME' and 'exit-vrf-policy' to ignore list.
vtysh needs to ignore these two commands or we'll get duplicate warnings
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'vtysh')
-rwxr-xr-x | vtysh/extract.pl.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vtysh/extract.pl.in b/vtysh/extract.pl.in index e3c859dab..5b23b2440 100755 --- a/vtysh/extract.pl.in +++ b/vtysh/extract.pl.in @@ -83,6 +83,8 @@ $ignore{'"router ospf [(1-65535)]"'} = "ignore"; $ignore{'"address-family vpnv6 [unicast]"'} = "ignore"; $ignore{'"address-family vpnv4 [unicast]"'} = "ignore"; $ignore{'"logical-router (1-65535) ns NAME"'} = "ignore"; +$ignore{'"vrf-policy NAME"' } = "ignore"; +$ignore{'"exit-vrf-policy"' } = "ignore"; my $cli_stomp = 0; |