mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-25 20:40:18 +01:00
Update defaults for Fedora supporting Include keyword
This commit is contained in:
parent
e6798c5d1e
commit
707e2e64a3
2 changed files with 29 additions and 18 deletions
|
@ -3,23 +3,9 @@ __sshd_packages:
|
||||||
- openssh
|
- openssh
|
||||||
- openssh-server
|
- openssh-server
|
||||||
__sshd_sftp_server: /usr/libexec/openssh/sftp-server
|
__sshd_sftp_server: /usr/libexec/openssh/sftp-server
|
||||||
|
# Fedora 32 ships with drop-in directory support so we touch
|
||||||
|
# just included file with highest priority by default and have
|
||||||
|
# empty defaults
|
||||||
|
__sshd_config_file: /etc/ssh/sshd_config.d/00-ansible_system_role.conf
|
||||||
__sshd_defaults:
|
__sshd_defaults:
|
||||||
HostKey:
|
|
||||||
- /etc/ssh/ssh_host_rsa_key
|
|
||||||
- /etc/ssh/ssh_host_ecdsa_key
|
|
||||||
- /etc/ssh/ssh_host_ed25519_key
|
|
||||||
SyslogFacility: AUTHPRIV
|
|
||||||
AuthorizedKeysFile: .ssh/authorized_keys
|
|
||||||
PasswordAuthentication: yes
|
|
||||||
ChallengeResponseAuthentication: no
|
|
||||||
GSSAPIAuthentication: yes
|
|
||||||
GSSAPICleanupCredentials: no
|
|
||||||
UsePAM: yes
|
|
||||||
X11Forwarding: yes
|
|
||||||
AcceptEnv:
|
|
||||||
- LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES
|
|
||||||
- LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT
|
|
||||||
- LC_IDENTIFICATION LC_ALL LANGUAGE
|
|
||||||
- XMODIFIERS
|
|
||||||
Subsystem: "sftp {{ sshd_sftp_server }}"
|
|
||||||
__sshd_os_supported: yes
|
__sshd_os_supported: yes
|
||||||
|
|
25
vars/Fedora_31.yml
Normal file
25
vars/Fedora_31.yml
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
---
|
||||||
|
__sshd_packages:
|
||||||
|
- openssh
|
||||||
|
- openssh-server
|
||||||
|
__sshd_sftp_server: /usr/libexec/openssh/sftp-server
|
||||||
|
__sshd_defaults:
|
||||||
|
HostKey:
|
||||||
|
- /etc/ssh/ssh_host_rsa_key
|
||||||
|
- /etc/ssh/ssh_host_ecdsa_key
|
||||||
|
- /etc/ssh/ssh_host_ed25519_key
|
||||||
|
SyslogFacility: AUTHPRIV
|
||||||
|
AuthorizedKeysFile: .ssh/authorized_keys
|
||||||
|
PasswordAuthentication: yes
|
||||||
|
ChallengeResponseAuthentication: no
|
||||||
|
GSSAPIAuthentication: yes
|
||||||
|
GSSAPICleanupCredentials: no
|
||||||
|
UsePAM: yes
|
||||||
|
X11Forwarding: yes
|
||||||
|
AcceptEnv:
|
||||||
|
- LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES
|
||||||
|
- LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT
|
||||||
|
- LC_IDENTIFICATION LC_ALL LANGUAGE
|
||||||
|
- XMODIFIERS
|
||||||
|
Subsystem: "sftp {{ sshd_sftp_server }}"
|
||||||
|
__sshd_os_supported: yes
|
Loading…
Reference in a new issue