mirror of
https://github.com/roles-ansible/ansible_role_sshd.git
synced 2024-08-16 11:59:49 +02:00
Fix AllowGroups configuration
This commit is contained in:
parent
1d7448d086
commit
374079ac50
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ UsePAM yes
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if sshd__restrict_groups -%}
|
{% if sshd__restrict_groups -%}
|
||||||
AllowUsers {{ sshd__allowed_groups|join(' ') }}
|
AllowGroups {{ sshd__allowed_groups|join(' ') }}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
||||||
# Allow client to pass locale environment variables
|
# Allow client to pass locale environment variables
|
||||||
|
|
Loading…
Reference in a new issue