Files
ansible-role-networking/handlers/main.yaml
Markus Pesch 6ea4a99156
All checks were successful
Ansible Linter / ansible-lint (push) Successful in 16s
Lint Markdown files / markdown-lint (push) Successful in 9s
fix: rename files to .yaml
2025-11-23 16:17:05 +01:00

12 lines
203 B
YAML

---
- name: Restart networkd
ansible.builtin.systemd:
name: "{{ item }}"
state: restarted
daemon_reload: true
with_items:
- systemd-networkd
- systemd-resolved
- systemd-timesyncd