add debian 10 (buster) support

This commit is contained in:
Martin Verges 2019-10-23 15:52:21 +02:00
parent 454bcb828f
commit 59314077b9
2 changed files with 34 additions and 0 deletions

View file

@ -10,6 +10,8 @@ galaxy_info:
versions:
- wheezy
- jessie
- stretch
- buster
- name: Ubuntu
versions:
- precise

32
vars/Debian_10.yml Normal file
View file

@ -0,0 +1,32 @@
---
__sshd_service: ssh
__sshd_packages:
- openssh-server
- openssh-sftp-server
__sshd_config_mode: "0644"
__sshd_defaults:
Port: 22
Protocol: 2
HostKey:
- /etc/ssh/ssh_host_rsa_key
- /etc/ssh/ssh_host_ecdsa_key
- /etc/ssh/ssh_host_ed25519_key
SyslogFacility: AUTH
LogLevel: INFO
LoginGraceTime: 120
PermitRootLogin: without-password
StrictModes: yes
PubkeyAuthentication: yes
IgnoreRhosts: yes
HostbasedAuthentication: no
PermitEmptyPasswords: no
ChallengeResponseAuthentication: no
X11Forwarding: yes
X11DisplayOffset: 10
PrintMotd: no
PrintLastLog: yes
TCPKeepAlive: yes
AcceptEnv: LANG LC_*
Subsystem: "sftp {{ sshd_sftp_server }}"
UsePAM: yes
__sshd_os_supported: yes