mirror of
https://github.com/iiab/iiab.git
synced 2025-02-12 11:12:06 +00:00
change netvars to 0-init
This commit is contained in:
parent
99633173a4
commit
2d49a1590b
7 changed files with 6 additions and 6 deletions
|
@ -8,6 +8,6 @@
|
|||
- vars/local_vars.yml
|
||||
|
||||
roles:
|
||||
- { role: netvars, tags: ['netvars'] }
|
||||
- { role: 0-init, tags: ['init'] }
|
||||
- { role: 1-prep, tags: ['prep','platform','base'] }
|
||||
- { role: openvpn, tags: ['openvpn'] }
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
- /etc/iiab/config_vars.yml
|
||||
|
||||
roles:
|
||||
- { role: netvars, tags: ['netvars'] }
|
||||
- { role: 0-init, tags: ['init'] }
|
||||
- { role: 4-server-options, tags: ['options'] }
|
||||
- { role: 5-xo-services, tags: ['xo-services'] }
|
||||
- { role: 6-generic-apps, tags: ['generic-apps'] }
|
||||
|
|
|
@ -9,5 +9,5 @@
|
|||
- /etc/iiab/config_vars.yml
|
||||
|
||||
roles:
|
||||
- { role: netvars, tags: ['network'] }
|
||||
- { role: 0-init, tags: ['network'] }
|
||||
- { role: network, tags: ['network','base'] }
|
||||
|
|
2
iiab.yml
2
iiab.yml
|
@ -9,7 +9,7 @@
|
|||
- /etc/iiab/config_vars.yml
|
||||
|
||||
roles:
|
||||
- { role: netvars, tags: ['netvars'] }
|
||||
- { role: 0-init, tags: ['init'] }
|
||||
- { role: 1-prep, tags: ['prep','platform','base'] }
|
||||
- { role: 2-common, tags: ['common','base'] }
|
||||
- { role: 3-base-server, tags: ['base'] }
|
||||
|
|
4
runtags
4
runtags
|
@ -35,7 +35,7 @@ found="N"
|
|||
|
||||
for tag in $tags
|
||||
do
|
||||
if [ "$tag" == "netvars" ]
|
||||
if [ "$tag" == "init" ]
|
||||
then
|
||||
found="Y"
|
||||
fi
|
||||
|
@ -47,7 +47,7 @@ taglist=$1
|
|||
|
||||
if [ "$found" == "N" ]
|
||||
then
|
||||
taglist="netvars,"$taglist
|
||||
taglist="init,"$taglist
|
||||
fi
|
||||
|
||||
export ANSIBLE_LOG_PATH="$CWD/iiab-debug.log"
|
||||
|
|
Loading…
Reference in a new issue