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 /data/templates/vrf/vrf.conf.j2 | |
parent | 3f657383cdd96b984c594bb8323a714d7a692f11 (diff) | |
download | vyos-1x-992c847493665fd2119636d81582aa80e99e388a.tar.gz vyos-1x-992c847493665fd2119636d81582aa80e99e388a.zip |
vrf: T4353: fix Jinja2 linting errors
Diffstat (limited to 'data/templates/vrf/vrf.conf.j2')
-rw-r--r-- | data/templates/vrf/vrf.conf.j2 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/data/templates/vrf/vrf.conf.j2 b/data/templates/vrf/vrf.conf.j2 new file mode 100644 index 000000000..d31d23574 --- /dev/null +++ b/data/templates/vrf/vrf.conf.j2 @@ -0,0 +1,9 @@ +### Autogenerated by vrf.py ### +# +# Routing table ID to name mapping reference +# id vrf name comment +{% if name is vyos_defined %} +{% for vrf, vrf_config in name.items() %} +{{ "%-10s" | format(vrf_config.table) }} {{ "%-16s" | format(vrf) }} {{ '# ' ~ vrf_config.description if vrf_config.description is vyos_defined }} +{% endfor %} +{% endif %} |