15 lines
371 B
YAML
Executable file
15 lines
371 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 unbound
|
|
ansible.builtin.service:
|
|
name: unbound
|
|
state: restarted
|
|
become: true
|
|
|
|
- name: Restart firewalld
|
|
ansible.builtin.service:
|
|
name: firewalld
|
|
state: restarted
|
|
become: true
|