Adding a small variable to the OpenSSH sshd_config file so that the service will work correctly on Centos 6.4 and earlier

This commit is contained in:
Mark Eggert 2014-01-03 00:11:17 -06:00
parent d35929876f
commit 2e229681c7
2 changed files with 5 additions and 0 deletions

View File

@ -102,7 +102,11 @@ PrintMotd no # pam does that
#PrintLastLog yes
#TCPKeepAlive yes
#UseLogin no
{% if grains['os_family'] == 'RedHat' %}
UsePrivilegeSeparation yes # RedHat/Centos 6.4 and earlier currently ship 5.3 (sandbox introduced in OpenSSH 5.9)
{% else %}
UsePrivilegeSeparation sandbox # Default for new installations.
{% endif %}
#PermitUserEnvironment no
#Compression delayed
#ClientAliveInterval 0

View File

@ -29,6 +29,7 @@ sshd_config:
file.managed:
- name: /etc/ssh/sshd_config
- source: salt://openssh/files/sshd_config
- template: jinja
- user: root
- mode: 600