mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-05 03:13:30 +01:00
Support for OpenBSD
This commit is contained in:
parent
3ddc23f207
commit
ef4bc25d54
3 changed files with 15 additions and 1 deletions
|
@ -33,6 +33,7 @@ Tested on:
|
|||
* FreeBSD 10.1
|
||||
* EL 6,7 derived distributions
|
||||
* Fedora 22, 23
|
||||
* OpenBSD 6.0
|
||||
|
||||
It will likely work on other flavours and more direct support via suitable
|
||||
[vars/](vars/) files is welcome.
|
||||
|
|
|
@ -26,10 +26,13 @@ galaxy_info:
|
|||
versions:
|
||||
- 22
|
||||
- 23
|
||||
- name: OpenBSD
|
||||
versions:
|
||||
- 6.0
|
||||
galaxy_tags:
|
||||
- networking
|
||||
- system
|
||||
- SSH
|
||||
- SSH
|
||||
- OpenSSH
|
||||
- sshd
|
||||
- server
|
||||
|
@ -38,4 +41,5 @@ galaxy_info:
|
|||
- centos
|
||||
- redhat
|
||||
- freebsd
|
||||
- openbsd
|
||||
dependencies: []
|
||||
|
|
9
vars/OpenBSD.yml
Normal file
9
vars/OpenBSD.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
sshd_config_group: wheel
|
||||
sshd_config_mode: "0600"
|
||||
sshd_sftp_server: /usr/libexec/sftp-server
|
||||
sshd_defaults:
|
||||
AuthorizedKeysFile: .ssh/authorized_keys
|
||||
Subsystem: "sftp {{ sshd_sftp_server }}"
|
||||
sshd_os_supported: yes
|
||||
sshd_manage_var_run: no
|
Loading…
Reference in a new issue