polytech-ansible-2023/roles/ntp/handlers/main.yml
Thomas Maurice 2a067a2fe4
More content and playbooks
* more readme.md content
* imported basic roles
* commented said basic roles
* trimmed down playbooks to be understandable
* update requirements.txt deps
2023-01-11 11:06:32 +01:00

8 lines
264 B
YAML

---
# handlers are special tasks that you can invoke when something changes.
# in this example you want to invoke this restart handler when the
# configuration of the service changes for example.
- name: "Restart ntp"
service:
name: ntp
state: restarted