2022-06-18 14:12:12 +02:00
|
|
|
---
|
|
|
|
|
2022-09-07 17:07:34 +02:00
|
|
|
- name: Wait for hosts to be ready
|
|
|
|
hosts: all
|
|
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
|
|
- name: Wait for system to become reachable
|
|
|
|
wait_for_connection:
|
|
|
|
timeout: 300
|
|
|
|
sleep: 10
|
2023-09-06 18:41:59 +02:00
|
|
|
- name: gather facts
|
|
|
|
ansible.builtin.setup:
|
|
|
|
gather_subset: all
|
2022-09-07 17:07:34 +02:00
|
|
|
|
2023-03-30 23:52:40 +02:00
|
|
|
- name: Common
|
|
|
|
ansible.builtin.import_playbook: plays/common.yaml
|
|
|
|
|
|
|
|
- name: host.nc.chaoswg.org
|
|
|
|
ansible.builtin.import_playbook: plays/vps.yaml
|
|
|
|
- name: mon1.hel1.chaoswg.org
|
|
|
|
ansible.builtin.import_playbook: plays/monitoring.yaml
|
|
|
|
- name: thonkpad.ka.chaoswg.org
|
|
|
|
ansible.builtin.import_playbook: plays/thonkpad.yaml
|
2022-06-18 14:12:12 +02:00
|
|
|
...
|