mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-08 21:03:29 +01:00
17 lines
393 B
YAML
17 lines
393 B
YAML
|
---
|
||
|
__sshd_service: ssh
|
||
|
__sshd_packages:
|
||
|
- openssh-server
|
||
|
- openssh-sftp-server
|
||
|
__sshd_config_mode: "0644"
|
||
|
__sshd_defaults:
|
||
|
Include: /etc/ssh/sshd_config.d/*.conf
|
||
|
KbdInteractiveAuthentication: false
|
||
|
UsePAM: true
|
||
|
X11Forwarding: true
|
||
|
PrintMotd: false
|
||
|
AcceptEnv: LANG LC_*
|
||
|
Subsystem: "sftp {{ __sshd_sftp_server }}"
|
||
|
__sshd_os_supported: true
|
||
|
__sshd_runtime_directory: /run/sshd
|