diff options
author | Daniil Baturin <daniil@vyos.io> | 2025-04-22 16:21:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-22 16:21:51 +0100 |
commit | 801bdc92ca8e55a001f5b7883c4770372643a1f3 (patch) | |
tree | 5fd154ad744e9cdd7b34d3f44f168d92dcf4ea99 /src/conf_mode/firewall.py | |
parent | d93a44867eb6924dc633405126893ae542855167 (diff) | |
parent | 8f20f0ef786318c5a6f43b8f3aa9133de98a8054 (diff) | |
download | veeos-1x-current.tar.gz veeos-1x-current.zip |
geoip: T5636: Add geoip for policy route/route6
Diffstat (limited to 'src/conf_mode/firewall.py')
-rwxr-xr-x | src/conf_mode/firewall.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/firewall.py b/src/conf_mode/firewall.py index cebe57092..72f2d39f4 100755 --- a/src/conf_mode/firewall.py +++ b/src/conf_mode/firewall.py @@ -627,7 +627,7 @@ def apply(firewall): # Call helper script to Update set contents if 'name' in firewall['geoip_updated'] or 'ipv6_name' in firewall['geoip_updated']: print('Updating GeoIP. Please wait...') - geoip_update(firewall) + geoip_update(firewall=firewall) return None |