forked from ISTI-ansible-roles/ansible-roles
The role now works for both debian and RH based distributions.
This commit is contained in:
parent
8e0c1ed830
commit
4fb544e092
|
@ -1,3 +1,9 @@
|
||||||
---
|
---
|
||||||
- name: Reload the ssh service
|
- name: Reload the ssh service
|
||||||
service: name=ssh state=reloaded
|
service: name=ssh state=reloaded
|
||||||
|
when: ansible_distribution_file_variety == 'Debian'
|
||||||
|
|
||||||
|
- name: Reload the ssh service
|
||||||
|
service: name=sshd state=reloaded
|
||||||
|
when: ansible_distribution_file_variety == 'RedHat'
|
||||||
|
|
||||||
|
|
|
@ -96,7 +96,11 @@ AcceptEnv LANG LC_*
|
||||||
UsePAM {{ sshd_use_pam }}
|
UsePAM {{ sshd_use_pam }}
|
||||||
|
|
||||||
{% if sshd_enable_sftp_subsystem %}
|
{% if sshd_enable_sftp_subsystem %}
|
||||||
|
{% if ansible_distribution_file_variety == 'RedHat' %}
|
||||||
|
Subsystem sftp /usr/libexec/openssh/sftp-server
|
||||||
|
{% else %}
|
||||||
Subsystem sftp /usr/lib/openssh/sftp-server
|
Subsystem sftp /usr/lib/openssh/sftp-server
|
||||||
|
{% endif %}
|
||||||
{% if sshd_enable_sftp_jail %}
|
{% if sshd_enable_sftp_jail %}
|
||||||
Match Group {{ sshd_sftp_chroot_match_group }}
|
Match Group {{ sshd_sftp_chroot_match_group }}
|
||||||
ChrootDirectory {{ sshd_sftp_chroot_directory }}
|
ChrootDirectory {{ sshd_sftp_chroot_directory }}
|
||||||
|
|
Loading…
Reference in New Issue