1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Moodle 3.10 recommends pkg php{{ php_version }}-soap

This commit is contained in:
A Holt 2020-12-03 20:57:00 -05:00 committed by GitHub
parent 5f1244e2f2
commit 7f89cb8fd4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,16 +26,17 @@
# state: present
# when: not is_debuntu
- name: Install 7 php packages (debuntu)
- name: Install 8 php packages (debuntu)
package:
name:
- php{{ php_version }}-pgsql
- php{{ php_version }}-curl
- php{{ php_version }}-zip
- php{{ php_version }}-gd
- php{{ php_version }}-mbstring # 2020-06-15: Now required by Moodle 3.9+
- php{{ php_version }}-mbstring # 2020-06-15: Required by Moodle 3.9+
- php{{ php_version }}-cli # 2020-06-15: In the past this included (above) mbstring? However this is not true on Ubuntu Server 20.04 LTS.
- php{{ php_version }}-intl # 2020-12-03: Now required by Moodle 3.10+
- php{{ php_version }}-intl # 2020-12-03: Required by Moodle 3.10+
- php{{ php_version }}-soap # 2020-12-03: Recommended by Moodle 3.10+
state: present
when: is_debuntu