diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-01-14 18:55:09 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-01-14 18:55:09 +0100 |
commit | 3549dbe4d8dfdc1b7bcb39aa795ba147c86f5066 (patch) | |
tree | 26f91425bb3ef01cf7f2cefcff7f793a789471a0 /src | |
parent | 3b9ae4c22d8dffa8b5beee57bf5b19dac969a009 (diff) | |
download | vyos-1x-3549dbe4d8dfdc1b7bcb39aa795ba147c86f5066.tar.gz vyos-1x-3549dbe4d8dfdc1b7bcb39aa795ba147c86f5066.zip |
bgp: T2174: remove invalid "no bgp default ipv4-unicast" from default config
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/protocols_bgp.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/conf_mode/protocols_bgp.py b/src/conf_mode/protocols_bgp.py index e77b1fc28..de0148b2f 100755 --- a/src/conf_mode/protocols_bgp.py +++ b/src/conf_mode/protocols_bgp.py @@ -63,7 +63,6 @@ def verify(bgp): # bail out early if there is no neighbor or peer-group statement # this also saves one indention level if neighbor not in asn_config: - print(f'no {neighbor} found in config') continue for peer, peer_config in asn_config[neighbor].items(): |