Fix newlines
This commit is contained in:
parent
71e670602c
commit
55a7ab766e
@ -17,13 +17,16 @@ HostKey /etc/ssh/ssh_host_ecdsa_key
|
|||||||
{% if ssh_kexalgorithms is defined %}
|
{% if ssh_kexalgorithms is defined %}
|
||||||
KexAlgorithms {% for alg in ssh_kexalgorithms %}{{ alg }}{{ "," if not loop.last }}{% endfor %}
|
KexAlgorithms {% for alg in ssh_kexalgorithms %}{{ alg }}{{ "," if not loop.last }}{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if ssh_ciphers is defined %}
|
{% if ssh_ciphers is defined %}
|
||||||
Ciphers {% for alg in ssh_ciphers %}{{ alg }}{{ "," if not loop.last }}{% endfor %}
|
Ciphers {% for alg in ssh_ciphers %}{{ alg }}{{ "," if not loop.last }}{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if ssh_macs is defined %}
|
{% if ssh_macs is defined %}
|
||||||
MACs {% for alg in ssh_macs %}{{ alg }}{{ "," if not loop.last }}{% endfor %}
|
MACs {% for alg in ssh_macs %}{{ alg }}{{ "," if not loop.last }}{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
|
||||||
AllowGroups {{ ssh_allow_groups }}
|
AllowGroups {{ ssh_allow_groups }}
|
||||||
LoginGraceTime {{ ssh_login_grace_time }}
|
LoginGraceTime {{ ssh_login_grace_time }}
|
||||||
PermitRootLogin {{ ssh_permit_root_login }}
|
PermitRootLogin {{ ssh_permit_root_login }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user