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

15 lines
365 B
YAML
Executable file

---
# Handler for the webtier: handlers are called by other plays.
# See http://docs.ansible.com/playbooks_intro.html for more information about handlers.
- name: Restart bind
ansible.builtin.service:
name: bind
state: restarted
become: true
- name: Restart firewalld
ansible.builtin.service:
name: firewalld
state: restarted
become: true