mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
43 lines
1.3 KiB
YAML
43 lines
1.3 KiB
YAML
# Local Add-ons
|
|
|
|
- name: ...IS BEGINNING ====================================
|
|
command: echo
|
|
|
|
- name: INTERNETARCHIVE
|
|
include_role:
|
|
name: internetarchive
|
|
when: internetarchive_install
|
|
|
|
# Is porting to Python 3 complete, and if so does this belong elsewhere?
|
|
- name: CAPTIVE PORTAL
|
|
include_role:
|
|
name: captiveportal
|
|
when: captiveportal_install
|
|
|
|
- name: MINETEST
|
|
include_role:
|
|
name: minetest
|
|
when: minetest_install
|
|
|
|
# KEEP AT THE END as this installs dependencies from Debian's 'testing' branch!
|
|
- name: CALIBRE
|
|
include_role:
|
|
name: calibre
|
|
when: calibre_install
|
|
|
|
- name: CALIBRE-WEB
|
|
include_role:
|
|
name: calibre-web
|
|
when: calibreweb_install
|
|
|
|
- name: "2021-06-27 TEMPORARY CODE TO INSTALL 'php-pear' UNTIL ADMIN CONSOLE DECLARES ITS OWN DEPENDENCY FOR: https://github.com/iiab/iiab-admin-console/blob/master/roles/cmdsrv/tasks/main.yml#L19"
|
|
package:
|
|
name: php-pear # WARNING: this also drags in 'php{{ php_version }}-xml' (also installed by MediaWiki, Nextcloud, roles/pbx's FreePBX, WordPress) AND 'php{{ php_version }}-cgi' (also installed by roles/pbx's FreePBX)
|
|
state: present
|
|
when: admin_console_install
|
|
|
|
- name: Recording STAGE 9 HAS COMPLETED ====================
|
|
lineinfile:
|
|
path: "{{ iiab_env_file }}"
|
|
regexp: '^STAGE=*'
|
|
line: 'STAGE=9'
|