diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-04-11 20:56:45 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-04-11 20:56:45 +0200 |
commit | 47838b888aa3e7378ca0270a774cb77635b7f092 (patch) | |
tree | 818b93f0503831e16d692d2178e5345935fc3296 /data/templates/accel-ppp/config_shaper_radius.j2 | |
parent | 5f164e59aac8ce7b8eba50d3906da87a3bb7a9da (diff) | |
download | vyos-1x-47838b888aa3e7378ca0270a774cb77635b7f092.tar.gz vyos-1x-47838b888aa3e7378ca0270a774cb77635b7f092.zip |
accel-ppp: T4333: migrate to new vyos_defined Jinja2 test
Diffstat (limited to 'data/templates/accel-ppp/config_shaper_radius.j2')
-rw-r--r-- | data/templates/accel-ppp/config_shaper_radius.j2 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/data/templates/accel-ppp/config_shaper_radius.j2 b/data/templates/accel-ppp/config_shaper_radius.j2 index 8de5f5df3..cf8b4871b 100644 --- a/data/templates/accel-ppp/config_shaper_radius.j2 +++ b/data/templates/accel-ppp/config_shaper_radius.j2 @@ -1,9 +1,9 @@ -{% if authentication is defined and authentication.mode is defined and authentication.mode == 'radius' %} -{% if authentication is defined and authentication.radius is defined and authentication.radius.rate_limit is defined and authentication.radius.rate_limit.enable is defined %} +{% if authentication.mode is vyos_defined('radius') %} +{% if authentication.radius.rate_limit.enable is vyos_defined %} [shaper] verbose=1 attr={{ authentication.radius.rate_limit.attribute }} -{% if authentication.radius.rate_limit.vendor is defined and authentication.radius.rate_limit.vendor is not none %} +{% if authentication.radius.rate_limit.vendor is vyos_defined %} vendor={{ authentication.radius.rate_limit.vendor }} {% endif %} {% endif %} |