diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-04-10 09:26:56 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-04-11 21:22:07 +0200 |
commit | f1b031589e6c58296cdf73b975c71b10c407bdb3 (patch) | |
tree | aea66328fffbdd9c22d39bddf0fb16248100beb0 /data/templates/accel-ppp/config_ip_pool.j2 | |
parent | 02f2700d4e3742bacf534c5bd6c4118c66a18aff (diff) | |
download | vyos-1x-f1b031589e6c58296cdf73b975c71b10c407bdb3.tar.gz vyos-1x-f1b031589e6c58296cdf73b975c71b10c407bdb3.zip |
T4353: enable linting of Jinja2 templates
Diffstat (limited to 'data/templates/accel-ppp/config_ip_pool.j2')
-rw-r--r-- | data/templates/accel-ppp/config_ip_pool.j2 | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/data/templates/accel-ppp/config_ip_pool.j2 b/data/templates/accel-ppp/config_ip_pool.j2 index ec1c77112..0bef4ad69 100644 --- a/data/templates/accel-ppp/config_ip_pool.j2 +++ b/data/templates/accel-ppp/config_ip_pool.j2 @@ -1,14 +1,14 @@ {% if client_ip_pool is vyos_defined %} [ip-pool] -{% if gateway_address is vyos_defined %} +{% if gateway_address is vyos_defined %} gw-ip-address={{ gateway_address }} -{% endif %} -{% if client_ip_pool.start is vyos_defined and client_ip_pool.stop is vyos_defined %} +{% endif %} +{% if client_ip_pool.start is vyos_defined and client_ip_pool.stop is vyos_defined %} {{ client_ip_pool.start }}-{{ client_ip_pool.stop.split('.')[3] }} -{% endif %} -{% if client_ip_pool.subnet is vyos_defined %} -{% for subnet in client_ip_pool.subnet %} +{% endif %} +{% if client_ip_pool.subnet is vyos_defined %} +{% for subnet in client_ip_pool.subnet %} {{ subnet }} -{% endfor %} -{% endif %} +{% endfor %} +{% endif %} {% endif %} |