mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-23 03:20:19 +01:00
b2a48a4e4a
The Subsystem entry was missing for FreeBSD OS, noticed this while provisioning a TrueNAS box. After the first provision ansible was unable to upload any files due to that missing setting. Tested this change by adjusting the role locally and rerunning it with a clean sshd_config on the remote side, worked fine.
7 lines
182 B
YAML
7 lines
182 B
YAML
---
|
|
sshd_config_group: wheel
|
|
sshd_config_mode: "0644"
|
|
sshd_sftp_server: /usr/libexec/sftp-server
|
|
__sshd_defaults:
|
|
Subsystem: "sftp {{ sshd_sftp_server }}"
|
|
__sshd_os_supported: yes
|