1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-15 04:32:11 +00:00

Cleanup: Moodle 3.9+ now requires phpX.Y-mbstring

This commit is contained in:
A Holt 2020-06-15 14:12:35 -04:00 committed by GitHub
parent c06a6c98c9
commit 23c5774fa8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,31 +18,31 @@
name: postgresql name: postgresql
- name: "Install packages: python-psycopg2, php-pgsql (OS's other than debuntu)" # - name: "Install packages: python-psycopg2, php-pgsql (OS's other than debuntu)"
package: # package:
name: # name:
- python-psycopg2 # - python-psycopg2
- php-pgsql # - php-pgsql
state: present # state: present
when: not is_debuntu # when: not is_debuntu
- name: Install 4 php packages (debuntu) - name: Install 4 php packages (debuntu)
package: package:
name: name:
- php{{ php_version }}-pgsql - php{{ php_version }}-pgsql
- php{{ php_version }}-curl - php{{ php_version }}-curl
#- php{{ php_version }}-zip - php{{ php_version }}-zip
- php{{ php_version }}-gd - php{{ php_version }}-gd
#- php{{ php_version }}-mbstring #- php{{ php_version }}-mbstring
# mbstring is now included in php-cli # 2020-06-15: Above (phpX.Y-mbstring) is now required by Moodle 3.9+ ...and (apparently) included by phpX.Y-cli below:
- php{{ php_version }}-cli - php{{ php_version }}-cli
state: present state: present
when: is_debuntu | bool when: is_debuntu | bool
- name: "Install package: php{{ php_version }}-zip (Ubuntu or Debian 9+)" # - name: "Install package: php{{ php_version }}-zip (Ubuntu or Debian 9+)"
package: # package:
name: "php{{ php_version }}-zip" # name: "php{{ php_version }}-zip"
when: is_ubuntu or (is_debian and not is_debian_8) # when: is_ubuntu or (is_debian and not is_debian_8)
# - name: "Install package: php-pclzip (debian-8)" # - name: "Install package: php-pclzip (debian-8)"
# package: # package: