16 lines
609 B
YAML
16 lines
609 B
YAML
- name: Setup Base
|
|
import_playbook: base.ansible.yml
|
|
- name: Setup Apps
|
|
import_playbook: apps/init.ansible.yml
|
|
- name: Setup HAProxy
|
|
import_playbook: haproxy/init.ansible.yml
|
|
when: installation_type == 'proxy'
|
|
- name: Setup Podman Rootless
|
|
import_playbook: podman/init.ansible.yml
|
|
when: installation_type == 'build' or installation_type == 'gaming' or installation_type == 'container'
|
|
- name: Setup PMS-CLI
|
|
import_playbook: apps/pms-cli/init.ansible.yml
|
|
when: installation_type == 'gaming'
|
|
- name: Setup repo-mgmt
|
|
import_playbook: build/init.ansible.yml
|
|
when: installation_type == 'build'
|