Fix newlines

This commit is contained in:
Corbin Bartsch 2022-09-15 10:26:02 -04:00
parent 71e670602c
commit 55a7ab766e
Signed by: coredotbin
GPG Key ID: 32D3B80A08D93212

View File

@ -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 }}