2017-10-27 00:42:44 +00:00
|
|
|
# Local Add-ons
|
2017-05-27 18:09:50 +00:00
|
|
|
|
2017-10-30 20:39:35 +00:00
|
|
|
- name: ...IS BEGINNING ====================================
|
2021-07-30 08:01:12 +00:00
|
|
|
meta: noop
|
2018-08-30 21:34:04 +00:00
|
|
|
|
2022-08-31 13:40:23 +00:00
|
|
|
- name: AZURACAST
|
|
|
|
include_role:
|
|
|
|
name: azuracast
|
|
|
|
when: azuracast_install
|
|
|
|
|
|
|
|
# Porting to Python 3 is complete: does this belong elsewhere?
|
2019-11-03 15:52:49 +00:00
|
|
|
- name: CAPTIVE PORTAL
|
2020-01-17 04:16:31 +00:00
|
|
|
include_role:
|
|
|
|
name: captiveportal
|
2020-10-16 20:46:19 +00:00
|
|
|
when: captiveportal_install
|
2019-11-02 10:27:42 +00:00
|
|
|
|
2021-08-03 21:09:58 +00:00
|
|
|
- name: INTERNETARCHIVE
|
|
|
|
include_role:
|
|
|
|
name: internetarchive
|
|
|
|
when: internetarchive_install
|
|
|
|
|
2019-07-08 12:31:49 +00:00
|
|
|
- name: MINETEST
|
|
|
|
include_role:
|
|
|
|
name: minetest
|
2020-10-16 20:46:19 +00:00
|
|
|
when: minetest_install
|
2019-07-08 12:31:49 +00:00
|
|
|
|
2021-08-03 22:23:49 +00:00
|
|
|
- name: CALIBRE-WEB
|
2021-08-03 21:09:58 +00:00
|
|
|
include_role:
|
2021-08-03 22:23:49 +00:00
|
|
|
name: calibre-web
|
2022-11-10 17:30:54 +00:00
|
|
|
when: calibreweb_install and ansible_machine is search("64") # 2022-11-10: Avoid installing on 32-bit, until RasPiOS fixes Rust (PR #3421)
|
2021-08-03 21:09:58 +00:00
|
|
|
|
2021-08-03 22:23:49 +00:00
|
|
|
# KEEP NEAR THE VERY END as this installs dependencies from Debian's 'testing' branch!
|
2019-10-07 00:29:35 +00:00
|
|
|
- name: CALIBRE
|
|
|
|
include_role:
|
|
|
|
name: calibre
|
2020-10-16 20:46:19 +00:00
|
|
|
when: calibre_install
|
2019-10-07 00:29:35 +00:00
|
|
|
|
2021-08-03 22:23:49 +00:00
|
|
|
# Pulls in a large number of devel packages, via asterisk.yml -> 'install_prereq install'
|
|
|
|
# https://github.com/asterisk/asterisk/blob/master/contrib/scripts/install_prereq#L21-L35
|
|
|
|
- name: PBX - Asterisk & FreePBX
|
2019-10-07 00:29:35 +00:00
|
|
|
include_role:
|
2021-08-03 22:23:49 +00:00
|
|
|
name: pbx
|
|
|
|
when: pbx_install
|
2019-10-07 00:29:35 +00:00
|
|
|
|
2023-03-18 03:36:31 +00:00
|
|
|
- name: "INSTALL python3-pip FOR ADMIN CONSOLE 'cmdsrv : Download speedtest-cli' -- SEE PR #3494 -- REMOVE THIS CODE LATER"
|
|
|
|
package:
|
|
|
|
name: python3-pip
|
|
|
|
state: present
|
|
|
|
|
2017-10-30 20:39:35 +00:00
|
|
|
- name: Recording STAGE 9 HAS COMPLETED ====================
|
2018-02-13 03:13:46 +00:00
|
|
|
lineinfile:
|
2020-02-04 00:54:04 +00:00
|
|
|
path: "{{ iiab_env_file }}"
|
2018-02-13 03:13:46 +00:00
|
|
|
regexp: '^STAGE=*'
|
|
|
|
line: 'STAGE=9'
|