mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-15 07:50:18 +01:00
31 lines
889 B
YAML
31 lines
889 B
YAML
---
|
|
- name: Make sure openssh is installed before creating backup
|
|
package:
|
|
name: openssh-server
|
|
state: present
|
|
|
|
- name: Make sure openssh has runtime directory on debian
|
|
file:
|
|
path: /run/sshd
|
|
state: directory
|
|
owner: root
|
|
group: root
|
|
mode: "0755"
|
|
when:
|
|
- ansible_facts['os_family'] == 'Debian'
|
|
|
|
- name: Define common variables
|
|
set_fact:
|
|
main_sshd_config: /etc/ssh/sshd_config
|
|
main_sshd_config_name: sshd_config
|
|
main_sshd_config_path: /etc/ssh/
|
|
|
|
- name: Define specific variables
|
|
set_fact:
|
|
main_sshd_config: /etc/ssh/sshd_config.d/00-ansible_system_role.conf
|
|
main_sshd_config_name: 00-ansible_system_role.conf
|
|
main_sshd_config_path: /etc/ssh/sshd_config.d/
|
|
when: >
|
|
ansible_facts['distribution'] == 'Fedora' or
|
|
(ansible_facts['distribution'] == 'RedHat' and
|
|
ansible_facts['distribution_major_version']|int > 8)
|