1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-14 20:22:08 +00:00

Merge pull request #2676 from jvonau/moodle-disable

moodle - split postgresql_install & postgresql_enabled conditional
This commit is contained in:
A Holt 2021-02-01 16:31:45 -05:00 committed by GitHub
commit 1914dca234
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,9 +24,12 @@
when: moodle_installed is undefined
- name: "Set 'postgresql_install: True' and 'postgresql_enabled: True' if moodle_enabled"
- name: "Set 'postgresql_install: True'"
set_fact:
postgresql_install: True
- name: "Set 'postgresql_enabled: True' if moodle_enabled"
set_fact:
postgresql_enabled: True
when: moodle_enabled