Skip to content

Commit 2e739ed

Browse files
committed
ssh: T7483: Fix sshd template indentation
1 parent 0310c83 commit 2e739ed

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

data/templates/ssh/sshd_config.j2

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -73,17 +73,17 @@ PubkeyAcceptedAlgorithms {{ pubkey_accepted_algorithm | join(',') }}
7373
{% endif %}
7474

7575
{% if fido is vyos_defined %}
76-
{% set configured_pubkey_options = [] %}
77-
{% if fido.pin_required is vyos_defined %}
76+
{% set configured_pubkey_options = [] %}
77+
{% if fido.pin_required is vyos_defined %}
7878
{{ configured_pubkey_options.append('verify-required') }}
79-
{% endif %}
80-
{% if fido.touch_required is vyos_defined %}
79+
{% endif %}
80+
{% if fido.touch_required is vyos_defined %}
8181
{{ configured_pubkey_options.append('touch-required') }}
82-
{% endif %}
83-
{% if configured_pubkey_options | length > 0 %}
82+
{% endif %}
83+
{% if configured_pubkey_options | length > 0 %}
8484
# Sets one or more public key authentication options.
8585
PubkeyAuthOptions {{ configured_pubkey_options | join(',') }}
86-
{% endif %}
86+
{% endif %}
8787
{% endif %}
8888

8989
{% if mac is vyos_defined %}

0 commit comments

Comments
 (0)