ansible-common/handlers/main.yml
Frank Villaro-Dixon 2284a02d72 aouaou
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
2024-10-04 23:05:14 +02:00

26 lines
No EOL
494 B
YAML

- name: restart systemd-timesyncd
systemd:
name: systemd-timesyncd
state: restarted
- name: restart systemd-journald
systemd:
name: systemd-journald
state: restarted
- name: restart systemd-resolved
systemd:
name: systemd-resolved
state: restarted
- name: restart sshd
systemd:
name: sshd
state: restarted
when: ansible_os_family == 'Archlinux'
- name: restart ssh
systemd:
name: ssh
state: restarted
when: ansible_os_family == 'Debian'