mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 19:52:06 +00:00
35 lines
707 B
YAML
35 lines
707 B
YAML
# Local Add-ons
|
|
|
|
- name: ...IS BEGINNING ====================================
|
|
command: echo
|
|
|
|
- name: CALIBRE
|
|
include_role:
|
|
name: calibre
|
|
when: calibre_install | bool
|
|
tags: calibre
|
|
|
|
- name: CALIBRE-WEB
|
|
include_role:
|
|
name: calibre-web
|
|
when: calibreweb_install | bool
|
|
tags: calibre-web
|
|
|
|
- name: MINETEST
|
|
include_role:
|
|
name: minetest
|
|
when: minetest_install | bool
|
|
tags: minetest
|
|
|
|
- name: INTERNETARCHIVE
|
|
include_role:
|
|
name: internetarchive
|
|
when: internetarchive_install | bool
|
|
tags: internetarchive
|
|
|
|
- name: Recording STAGE 9 HAS COMPLETED ====================
|
|
lineinfile:
|
|
dest: "{{ iiab_env_file }}"
|
|
regexp: '^STAGE=*'
|
|
line: 'STAGE=9'
|
|
state: present
|