Browse Source

PrintLastLog missing in FreeBSD 10.3

master
Alexander Weidinger 7 years ago
parent
commit
678cc9066c
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      openssh/files/sshd_config

+ 3
- 0
openssh/files/sshd_config View File

@@ -145,7 +145,10 @@
{{ option('AllowTcpForwarding', 'yes') }}
{{ option_default_uncommented('X11DisplayOffset', '10') }}
{{ option_default_uncommented('PrintMotd', 'no') }}
{# Bug in FreeBSD 10.3 (?) See https://lists.freebsd.org/pipermail/freebsd-stable/2016-April/084501.html #}
{% if not (salt['grains.get']('os') == 'FreeBSD' and salt['grains.get']('osrelease') == '10.3') -%}
{{ option_default_uncommented('PrintLastLog', 'yes') }}
{% endif -%}
{{ option_default_uncommented('TCPKeepAlive', 'yes') }}
{{ option('UseLogin', 'no') }}


Loading…
Cancel
Save