Alexander Dahl
e29311c4ed
When working on !54 it became obvious playbooks could be structured better in this project. Therefor we move the tasks supposed to be run for _all_ hosts to a separate file. The *main.yml* file should only import other playbooks from now on, should not define tasks anymore.
29 lines
629 B
YAML
29 lines
629 B
YAML
---
|
|
# main playbook aggregating all the other playbooks
|
|
|
|
- name: Setup for all hosts
|
|
import_playbook: all.yml
|
|
|
|
- name: Specific setup for all proxmox hosts
|
|
import_playbook: proxmox.yml
|
|
|
|
- name: Tau specific setup
|
|
import_playbook: tau.yml
|
|
|
|
- name: Pottwal specific setup
|
|
import_playbook: pottwal.yml
|
|
|
|
- name: Specific setup for host unicorn
|
|
import_playbook: unicorn.yml
|
|
|
|
- name: Platon specific setup
|
|
import_playbook: platon.yml
|
|
|
|
- name: Radon specific setup
|
|
import_playbook: radon.yml
|
|
|
|
- name: Krypton specific setup
|
|
import_playbook: krypton.yml
|
|
|
|
- name: Oganesson specific setup
|
|
import_playbook: oganesson.yml
|