12 lines
251 B
YAML
12 lines
251 B
YAML
|
|
---
|
||
|
|
- name: Validate and reload ssh
|
||
|
|
block:
|
||
|
|
- name: Valider la configuration SSH
|
||
|
|
ansible.builtin.command: sshd -t
|
||
|
|
changed_when: false
|
||
|
|
|
||
|
|
- name: Recharger SSH
|
||
|
|
ansible.builtin.systemd:
|
||
|
|
name: ssh
|
||
|
|
state: reloaded
|