mirror of
https://github.com/iiab/iiab.git
synced 2025-02-12 11:12:06 +00:00
* move local_facts, test for it, cp if necess * got os wrong -- not OS * change /etc/*release, vars/filenames * add os_ver * add os_ver to iiab.env * remove uuid generation for local_facts * next * delete debugging lines * fetch the uuid, and put it in ini file * be more specific about uuid * need braces in set_fact * hyphen in OS-version * go back to OS.yml based upon os_ver * remove debug * oops VERSION_ID->OS_VER * issure error message when OS not in case statement
20 lines
660 B
YAML
20 lines
660 B
YAML
---
|
|
- hosts: all
|
|
become: yes
|
|
|
|
vars_files:
|
|
- vars/default_vars.yml
|
|
- vars/{{ ansible_local.local_facts.os_ver}}.yml
|
|
- vars/local_vars.yml
|
|
- /etc/iiab/config_vars.yml
|
|
|
|
roles:
|
|
- { role: 1-prep, tags: ['prep','platform','base'] }
|
|
- { role: 2-common, tags: ['common','base'] }
|
|
- { role: 3-base-server, tags: ['base'] }
|
|
- { role: 4-server-options, tags: ['options'] }
|
|
- { role: 5-xo-services, tags: ['xo-services'] }
|
|
- { role: 6-generic-apps, tags: ['generic-apps'] }
|
|
- { role: 7-edu-apps, tags: ['edu-apps'] }
|
|
- { role: 8-mgmt-tools, tags: ['tools'] }
|
|
- { role: 9-local-addons, tags: ['addons'] }
|