Skip to content
Snippets Groups Projects
Commit f74b6ff2 authored by Aleksandr Kurbatov's avatar Aleksandr Kurbatov
Browse files

Merge branch 'junos_ecdsa_key' into 'develop'

Junos system/login: add support for ECDSA keys

See merge request !109
parents 85b9a7b1 26426a66
No related branches found
No related tags found
1 merge request!109Junos system/login: add support for ECDSA keys
Pipeline #85749 passed
...@@ -46,6 +46,10 @@ replace: login { ...@@ -46,6 +46,10 @@ replace: login {
ssh-dsa "{{ dsa_key }}"; ssh-dsa "{{ dsa_key }}";
{% endfor %} {% endfor %}
{% endif %} {% endif %}
{% if login_user.authentication.ssh_ecdsa is defined %} {% for ecdsa_key in login_user.authentication.ssh_ecdsa %}
ssh-ecdsa "{{ ecdsa_key }}";
{% endfor %}
{% endif %}
{% if login_user.authentication.ssh_rsa is defined %} {% for rsa_key in login_user.authentication.ssh_rsa %} {% if login_user.authentication.ssh_rsa is defined %} {% for rsa_key in login_user.authentication.ssh_rsa %}
ssh-rsa "{{ rsa_key }}"; ssh-rsa "{{ rsa_key }}";
{% endfor %} {% endfor %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment