mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
roles from .26 testing
This commit is contained in:
commit
69b47e9b14
1 changed files with 58 additions and 19 deletions
|
@ -8,22 +8,61 @@
|
||||||
- vars/local_vars.yml
|
- vars/local_vars.yml
|
||||||
|
|
||||||
roles:
|
roles:
|
||||||
- { role: 0-init, tags: ['0-init'] }
|
- name: 0-init
|
||||||
- { role: 1-prep, tags: ['1-prep','platform','base'],
|
include_role:
|
||||||
when: ansible_local.local_facts.stage|int < 1 }
|
name: 0-init
|
||||||
- { role: 2-common, tags: ['2-common','base'],
|
tags: 0-init
|
||||||
when: ansible_local.local_facts.stage|int < 2 }
|
|
||||||
- { role: 3-base-server, tags: ['3-base-server','base'],
|
- name: 1-prep
|
||||||
when: ansible_local.local_facts.stage|int < 3 }
|
include_role:
|
||||||
- { role: 4-server-options, tags: ['4-server-options'],
|
name: 1-prep
|
||||||
when: ansible_local.local_facts.stage|int < 4 }
|
when: ansible_local.local_facts.stage|int < 1
|
||||||
- { role: 5-xo-services, tags: ['5-xo-services'],
|
tags: 1-prep, platform, base
|
||||||
when: ansible_local.local_facts.stage|int < 5 }
|
|
||||||
- { role: 6-generic-apps, tags: ['6-generic-apps'],
|
- name: 2-common
|
||||||
when: ansible_local.local_facts.stage|int < 6 }
|
include_role:
|
||||||
- { role: 7-edu-apps, tags: ['7-edu-apps'],
|
name: 2-common
|
||||||
when: ansible_local.local_facts.stage|int < 7 }
|
when: ansible_local.local_facts.stage|int < 2
|
||||||
- { role: 8-mgmt-tools, tags: ['8-mgmt-tools'],
|
tags: 2-common, base
|
||||||
when: ansible_local.local_facts.stage|int < 8 }
|
|
||||||
- { role: 9-local-addons, tags: ['9-local-addons'],
|
- name: 3-base-server
|
||||||
when: ansible_local.local_facts.stage|int < 9 }
|
include_role:
|
||||||
|
name: 3-base-server
|
||||||
|
when: ansible_local.local_facts.stage|int < 3
|
||||||
|
tags: 3-base-server, base
|
||||||
|
|
||||||
|
- name: 4-server-options
|
||||||
|
include_role:
|
||||||
|
name: 4-server-options
|
||||||
|
when: ansible_local.local_facts.stage|int < 4
|
||||||
|
tags: 4-server-options
|
||||||
|
|
||||||
|
- name: 5-xo-services
|
||||||
|
include_role:
|
||||||
|
name: 5-xo-services
|
||||||
|
when: ansible_local.local_facts.stage|int < 5
|
||||||
|
tags: 5-xo-services
|
||||||
|
|
||||||
|
- name: 6-generic-apps
|
||||||
|
include_role:
|
||||||
|
name: 6-generic-apps
|
||||||
|
when: ansible_local.local_facts.stage|int < 6
|
||||||
|
tags: 6-generic-apps
|
||||||
|
|
||||||
|
- name: 7-edu-apps
|
||||||
|
include_role:
|
||||||
|
name: 7-edu-apps
|
||||||
|
when: ansible_local.local_facts.stage|int < 7
|
||||||
|
tags: 7-edu-apps
|
||||||
|
|
||||||
|
- name: 8-mgmt-tools
|
||||||
|
include_role:
|
||||||
|
name: 8-mgmt-tools
|
||||||
|
when: ansible_local.local_facts.stage|int < 8
|
||||||
|
tags: 8-mgmt-tools
|
||||||
|
|
||||||
|
- name: 9-local-addons
|
||||||
|
include_role:
|
||||||
|
name: 9-local-addons
|
||||||
|
when: ansible_local.local_facts.stage|int < 9
|
||||||
|
tags: 9-local-addons
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue