diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-05-01 19:21:35 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-05-01 19:21:35 +0200 |
commit | 992c847493665fd2119636d81582aa80e99e388a (patch) | |
tree | aab41f44ee6f04579f4a8686cdacebdc26b2c82b /src | |
parent | 3f657383cdd96b984c594bb8323a714d7a692f11 (diff) | |
download | vyos-1x-992c847493665fd2119636d81582aa80e99e388a.tar.gz vyos-1x-992c847493665fd2119636d81582aa80e99e388a.zip |
vrf: T4353: fix Jinja2 linting errors
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/vrf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/vrf.py b/src/conf_mode/vrf.py index f79c8a21e..f2d041083 100755 --- a/src/conf_mode/vrf.py +++ b/src/conf_mode/vrf.py @@ -133,10 +133,10 @@ def verify(vrf): def generate(vrf): - render(config_file, 'vrf/vrf.conf.tmpl', vrf) + render(config_file, 'vrf/vrf.conf.j2', vrf) # Render nftables zones config - render(nft_vrf_config, 'firewall/nftables-vrf-zones.tmpl', vrf) + render(nft_vrf_config, 'firewall/nftables-vrf-zones.j2', vrf) return None |