infrastructure/ansible/playbook.yaml

25 lines
591 B
YAML
Raw Normal View History

---
- 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
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
...