Skip to content

Commit

Permalink
fix(sshd_config): remove special newline handling for auth options
Browse files Browse the repository at this point in the history
  • Loading branch information
pprkut authored and alxwr committed Feb 8, 2024
1 parent 09fce31 commit 3d2442f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions openssh/files/default/sshd_config
Original file line number Diff line number Diff line change
Expand Up @@ -183,13 +183,13 @@
{#- needs to to a DNS lookup -#}

{# DenyUsers -#}
{{- option_string_or_list('DenyUsers', sep=' ') }}
{{- option_string_or_list('DenyUsers', sep=' ') -}}
{# AllowUsers -#}
{{- option_string_or_list('AllowUsers', sep=' ') }}
{{- option_string_or_list('AllowUsers', sep=' ') -}}
{# DenyGroups -#}
{{- option_string_or_list('DenyGroups', sep=' ') }}
{{- option_string_or_list('DenyGroups', sep=' ') -}}
{# AllowGroups -#}
{{- option_string_or_list('AllowGroups', sep=' ') }}{{ "\n" -}}
{{- option_string_or_list('AllowGroups', sep=' ') -}}


{#- Specifies the available KEX (Key Exchange) algorithms. -#}
Expand Down

0 comments on commit 3d2442f

Please sign in to comment.