2024-05-01 16:15:32 +03:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Run common tasks
|
|
|
|
hosts: all
|
|
|
|
roles:
|
|
|
|
- common
|
|
|
|
|
2024-05-04 19:05:06 +03:00
|
|
|
- name: Set up routers
|
2024-05-01 16:15:32 +03:00
|
|
|
hosts: routers
|
|
|
|
roles:
|
|
|
|
- firewall
|
|
|
|
- router
|
2024-05-04 19:05:06 +03:00
|
|
|
|
|
|
|
- name: Restart if required
|
|
|
|
hosts: all
|
|
|
|
tasks:
|
|
|
|
- name: Reboot
|
|
|
|
ansible.builtin.reboot:
|
|
|
|
when: restart_required is defined
|