summaryrefslogtreecommitdiff
path: root/data/templates/accel-ppp/config_modules_auth_mode.j2
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-04-11 20:56:45 +0200
committerChristian Poessinger <christian@poessinger.com>2022-04-11 20:56:45 +0200
commit47838b888aa3e7378ca0270a774cb77635b7f092 (patch)
tree818b93f0503831e16d692d2178e5345935fc3296 /data/templates/accel-ppp/config_modules_auth_mode.j2
parent5f164e59aac8ce7b8eba50d3906da87a3bb7a9da (diff)
downloadvyos-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_modules_auth_mode.j2')
-rw-r--r--data/templates/accel-ppp/config_modules_auth_mode.j24
1 files changed, 2 insertions, 2 deletions
diff --git a/data/templates/accel-ppp/config_modules_auth_mode.j2 b/data/templates/accel-ppp/config_modules_auth_mode.j2
index e3d578b38..3fb8a011f 100644
--- a/data/templates/accel-ppp/config_modules_auth_mode.j2
+++ b/data/templates/accel-ppp/config_modules_auth_mode.j2
@@ -1,5 +1,5 @@
-{% if authentication is defined and authentication.mode is defined and authentication.mode == 'local' %}
+{% if authentication.mode is vyos_defined('local') %}
chap-secrets
-{% elif authentication is defined and authentication.mode is defined and authentication.mode == 'radius' %}
+{% elif authentication.mode is vyos_defined('radius') %}
radius
{% endif %}