mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 19:52:06 +00:00
Merge pull request #678 from holta/4-server-options
Stages 4-9: main.yml indentation/syntax per new Ansible docs
This commit is contained in:
commit
d8236375d6
6 changed files with 33 additions and 26 deletions
|
@ -78,15 +78,17 @@
|
||||||
tags: usb-lib
|
tags: usb-lib
|
||||||
|
|
||||||
- name: Create a Python interface to iiab.env
|
- name: Create a Python interface to iiab.env
|
||||||
template: src=roles/1-prep/templates/iiab_env.py.j2
|
template:
|
||||||
dest=/etc/iiab/iiab_env.py
|
src: roles/1-prep/templates/iiab_env.py.j2
|
||||||
|
dest: /etc/iiab/iiab_env.py
|
||||||
|
|
||||||
- name: Generate the offline documents
|
- name: Generate the offline documents
|
||||||
command: /usr/bin/iiab-refresh-wiki-docs
|
command: /usr/bin/iiab-refresh-wiki-docs
|
||||||
when: not nodocs
|
when: not nodocs
|
||||||
|
|
||||||
- name: Recording STAGE 4 HAS COMPLETED ==================
|
- name: Recording STAGE 4 HAS COMPLETED ==================
|
||||||
lineinfile: dest=/etc/iiab/iiab.env
|
lineinfile:
|
||||||
regexp='^STAGE=*'
|
dest: /etc/iiab/iiab.env
|
||||||
line='STAGE=4'
|
regexp: '^STAGE=*'
|
||||||
state=present
|
line: 'STAGE=4'
|
||||||
|
state: present
|
||||||
|
|
|
@ -22,7 +22,8 @@
|
||||||
tags: olpc, idmgr
|
tags: olpc, idmgr
|
||||||
|
|
||||||
- name: Recording STAGE 5 HAS COMPLETED =====================
|
- name: Recording STAGE 5 HAS COMPLETED =====================
|
||||||
lineinfile: dest=/etc/iiab/iiab.env
|
lineinfile:
|
||||||
regexp='^STAGE=*'
|
dest: /etc/iiab/iiab.env
|
||||||
line='STAGE=5'
|
regexp: '^STAGE=*'
|
||||||
state=present
|
line: 'STAGE=5'
|
||||||
|
state: present
|
||||||
|
|
|
@ -40,7 +40,8 @@
|
||||||
tags: wordpress
|
tags: wordpress
|
||||||
|
|
||||||
- name: Recording STAGE 6 HAS COMPLETED ====================
|
- name: Recording STAGE 6 HAS COMPLETED ====================
|
||||||
lineinfile: dest=/etc/iiab/iiab.env
|
lineinfile:
|
||||||
regexp='^STAGE=*'
|
dest: /etc/iiab/iiab.env
|
||||||
line='STAGE=6'
|
regexp: '^STAGE=*'
|
||||||
state=present
|
line: 'STAGE=6'
|
||||||
|
state: present
|
||||||
|
|
|
@ -40,7 +40,8 @@
|
||||||
tags: sugarizer
|
tags: sugarizer
|
||||||
|
|
||||||
- name: Recording STAGE 7 HAS COMPLETED ========================
|
- name: Recording STAGE 7 HAS COMPLETED ========================
|
||||||
lineinfile: dest=/etc/iiab/iiab.env
|
lineinfile:
|
||||||
regexp='^STAGE=*'
|
dest: /etc/iiab/iiab.env
|
||||||
line='STAGE=7'
|
regexp: '^STAGE=*'
|
||||||
state=present
|
line: 'STAGE=7'
|
||||||
|
state: present
|
||||||
|
|
|
@ -52,7 +52,8 @@
|
||||||
tags: xovis
|
tags: xovis
|
||||||
|
|
||||||
- name: Recording STAGE 8 HAS COMPLETED ======================
|
- name: Recording STAGE 8 HAS COMPLETED ======================
|
||||||
lineinfile: dest=/etc/iiab/iiab.env
|
lineinfile:
|
||||||
regexp='^STAGE=*'
|
dest: /etc/iiab/iiab.env
|
||||||
line='STAGE=8'
|
regexp: '^STAGE=*'
|
||||||
state=present
|
line: 'STAGE=8'
|
||||||
|
state: present
|
||||||
|
|
|
@ -10,7 +10,8 @@
|
||||||
tags: calibre
|
tags: calibre
|
||||||
|
|
||||||
- name: Recording STAGE 9 HAS COMPLETED ====================
|
- name: Recording STAGE 9 HAS COMPLETED ====================
|
||||||
lineinfile: dest=/etc/iiab/iiab.env
|
lineinfile:
|
||||||
regexp='^STAGE=*'
|
dest: /etc/iiab/iiab.env
|
||||||
line='STAGE=9'
|
regexp: '^STAGE=*'
|
||||||
state=present
|
line: 'STAGE=9'
|
||||||
|
state: present
|
||||||
|
|
Loading…
Reference in a new issue