diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-02-14 18:22:38 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-02-14 18:22:40 +0100 |
commit | d969fd1f4dc0f4f7a0c935272857595e29ff0032 (patch) | |
tree | 7db5d694f4296722ef607b659eb3abb6026d3b98 /data/templates/accel-ppp/config_modules_auth_protocols.j2 | |
parent | 9756e54926af81b48bc579c7de16b602cc54efcc (diff) | |
download | vyos-1x-d969fd1f4dc0f4f7a0c935272857595e29ff0032.tar.gz vyos-1x-d969fd1f4dc0f4f7a0c935272857595e29ff0032.zip |
templates: convert DOS -> UNIX line endings
Diffstat (limited to 'data/templates/accel-ppp/config_modules_auth_protocols.j2')
-rw-r--r-- | data/templates/accel-ppp/config_modules_auth_protocols.j2 | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/data/templates/accel-ppp/config_modules_auth_protocols.j2 b/data/templates/accel-ppp/config_modules_auth_protocols.j2 index e122d6c48..454d37792 100644 --- a/data/templates/accel-ppp/config_modules_auth_protocols.j2 +++ b/data/templates/accel-ppp/config_modules_auth_protocols.j2 @@ -1,10 +1,10 @@ -{% for protocol in authentication.protocols %}
-{# this should be fixed in the CLI by a migrator #}
-{% if protocol == 'chap' %}
-auth_chap_md5
-{% elif protocol == 'mschap' %}
-auth_mschap_v1
-{% else %}
-auth_{{ protocol.replace('-', '_') }}
-{% endif %}
-{% endfor %}
+{% for protocol in authentication.protocols %} +{# this should be fixed in the CLI by a migrator #} +{% if protocol == 'chap' %} +auth_chap_md5 +{% elif protocol == 'mschap' %} +auth_mschap_v1 +{% else %} +auth_{{ protocol.replace('-', '_') }} +{% endif %} +{% endfor %} |