mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 03:32:12 +00:00
default_vars clarifs, Moodle fix to install PostgreSQL
This commit is contained in:
parent
ac22723b43
commit
693ed7767b
2 changed files with 13 additions and 4 deletions
|
@ -40,6 +40,11 @@
|
||||||
# enabled: no
|
# enabled: no
|
||||||
# when: not moodle_enabled and not (pathagar_enabled is defined and pathagar_enabled)
|
# when: not moodle_enabled and not (pathagar_enabled is defined and pathagar_enabled)
|
||||||
|
|
||||||
|
- name: "Set 'postgresql_install: True' if moodle_enabled"
|
||||||
|
set_fact:
|
||||||
|
postgresql_install: True
|
||||||
|
when: moodle_enabled | bool
|
||||||
|
|
||||||
- name: "Set 'postgresql_enabled: True' if moodle_enabled"
|
- name: "Set 'postgresql_enabled: True' if moodle_enabled"
|
||||||
set_fact:
|
set_fact:
|
||||||
postgresql_enabled: True
|
postgresql_enabled: True
|
||||||
|
|
|
@ -239,13 +239,17 @@ pi_swap_file_size: 1024
|
||||||
admin_console_install: True
|
admin_console_install: True
|
||||||
admin_console_enabled: True
|
admin_console_enabled: True
|
||||||
|
|
||||||
# MySQL MANDATORY - THESE 2 VARS HAVE NO EFFECT - SEE roles/0-init/tasks/main.yml & roles/mysql/tasks/main.yml
|
# 2020-09-24: MySQL / MariaDB is MANDATORY but still evolving - please see:
|
||||||
|
# https://github.com/iiab/iiab/blob/master/roles/mysql/tasks/install.yml
|
||||||
|
# https://github.com/iiab/iiab/blob/master/roles/3-base-server/tasks/main.yml
|
||||||
|
# THESE 2 LEGACY VARS ARE PRESERVED BUT HAVE NO EFFECT:
|
||||||
mysql_install: True
|
mysql_install: True
|
||||||
mysql_enabled: True
|
mysql_enabled: True
|
||||||
|
|
||||||
# 2019-01-13: IIAB's use of NGINX is still evolving -- please review this
|
# 2020-09-24: NGINX is MANDATORY but still evolving - please see:
|
||||||
# evolving doc: https://github.com/iiab/iiab/blob/master/roles/nginx/README.md
|
# https://github.com/iiab/iiab/blob/master/roles/nginx/README.md
|
||||||
# 2020-09-24: NGINX is mandatory, SEE: roles/3-base-server/tasks/main.yml
|
# https://github.com/iiab/iiab/blob/master/roles/3-base-server/tasks/main.yml
|
||||||
|
# THESE 2 LEGACY VARS ARE PRESERVED BUT HAVE NO EFFECT:
|
||||||
nginx_install: True
|
nginx_install: True
|
||||||
nginx_enabled: True
|
nginx_enabled: True
|
||||||
nginx_port: 80
|
nginx_port: 80
|
||||||
|
|
Loading…
Reference in a new issue