2025-01-31 16:11:05 +01:00
|
|
|
---
|
|
|
|
|
- hosts: all
|
|
|
|
|
become: true
|
|
|
|
|
tasks:
|
|
|
|
|
- import_tasks: tasks/general/sshd-config.yml
|
|
|
|
|
- import_tasks: tasks/debian-general/restart-ssh-service.yml
|
2026-01-05 23:11:28 +01:00
|
|
|
when: ansible_facts["distribution"] == "Debian"
|
2025-01-31 16:11:05 +01:00
|
|
|
- import_tasks: tasks/rhel-general/restart-ssh-service.yml
|
2026-01-05 23:11:28 +01:00
|
|
|
when: ansible_facts["distribution"] == "RedHat"
|