infra/ansible/roles/common/handlers/main.yml
2025-05-30 13:24:38 -05:00

14 lines
375 B
YAML
Executable file

---
# Handler to handle common notifications. Handlers are called by other plays.
# See http://docs.ansible.com/playbooks_intro.html for more information about handlers.
- name: Restart ntp
ansible.builtin.service:
name: ntp
state: restarted
become: true
# - name: Restart ssh
# ansible.builtin.service:
# name: ssh
# state: restarted
# become: true