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:
parent
c06a6c98c9
commit
23c5774fa8
1 changed files with 13 additions and 13 deletions
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue