diff options
author | Nicolas Fort <nicolasfort1988@gmail.com> | 2023-06-01 12:49:21 +0000 |
---|---|---|
committer | Nicolas Fort <nicolasfort1988@gmail.com> | 2023-08-11 11:50:00 -0300 |
commit | 68694d022d8f63cfeef42430220efc56d4a1433c (patch) | |
tree | c88e6c59d6588ae5ccef715f4a40f43c6f3dd0ad /python | |
parent | d898739b78f4563b3e170684bbc1d248c62553fe (diff) | |
download | vyos-1x-68694d022d8f63cfeef42430220efc56d4a1433c.tar.gz vyos-1x-68694d022d8f63cfeef42430220efc56d4a1433c.zip |
T5160: firewal refactor: fix tabulation for geo-ip parsing code. Typo fix in firewall smoketest
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/firewall.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/python/vyos/firewall.py b/python/vyos/firewall.py index bb32556af..b028f0af0 100644 --- a/python/vyos/firewall.py +++ b/python/vyos/firewall.py @@ -521,12 +521,12 @@ def geoip_update(firewall, force=False): set_name = f'GEOIP_CC_{path[1]}_{path[2]}_{path[4]}' if path[1] == 'ipv6_name': set_name = f'GEOIP_CC_name6_{path[2]}_{path[4]}' - if ( path[0] == 'ipv4' ) and ( path[1] == 'forward' or path[1] == 'input' or path[1] == 'output' or path[1] == 'name' ): - for code in codes: - ipv4_codes.setdefault(code, []).append(set_name) - elif ( path[0] == 'ipv6' ) and ( path[1] == 'forward' or path[1] == 'input' or path[1] == 'output' or path[1] == 'ipv6_name' ): - for code in codes: - ipv6_codes.setdefault(code, []).append(set_name) + if ( path[0] == 'ipv4' ) and ( path[1] == 'forward' or path[1] == 'input' or path[1] == 'output' or path[1] == 'name' ): + for code in codes: + ipv4_codes.setdefault(code, []).append(set_name) + elif ( path[0] == 'ipv6' ) and ( path[1] == 'forward' or path[1] == 'input' or path[1] == 'output' or path[1] == 'ipv6_name' ): + for code in codes: + ipv6_codes.setdefault(code, []).append(set_name) if not ipv4_codes and not ipv6_codes: if force: |