Skip to content

Commit 0fcd74d

Browse files
authored
Merge pull request iiab#2657 from holta/moodle-3.10
Moodle 3.9 -> 3.10
2 parents 110e546 + 7f89cb8 commit 0fcd74d

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

roles/moodle/defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# All above are set in: github.com/iiab/iiab/blob/master/vars/default_vars.yml
88
# If nec, change them by editing /etc/iiab/local_vars.yml prior to installing!
99

10-
moodle_version: 39
10+
moodle_version: 310
1111
moodle_repo_url: https://github.com/moodle/moodle.git
1212
#moodle_repo_url: git://git.moodle.org/moodle.git # 2020-10-16: VERY Slow!
1313
moodle_base: "{{ iiab_base }}/moodle" # /opt/iiab

roles/moodle/tasks/install.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,17 @@
2626
# state: present
2727
# when: not is_debuntu
2828

29-
- name: Install 4 php packages (debuntu)
29+
- name: Install 8 php packages (debuntu)
3030
package:
3131
name:
3232
- php{{ php_version }}-pgsql
3333
- php{{ php_version }}-curl
3434
- php{{ php_version }}-zip
3535
- php{{ php_version }}-gd
36-
- php{{ php_version }}-mbstring # 2020-06-15: Now required by Moodle 3.9+
37-
- 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.
36+
- php{{ php_version }}-mbstring # 2020-06-15: Required by Moodle 3.9+
37+
- 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.
38+
- php{{ php_version }}-intl # 2020-12-03: Required by Moodle 3.10+
39+
- php{{ php_version }}-soap # 2020-12-03: Recommended by Moodle 3.10+
3840
state: present
3941
when: is_debuntu
4042

0 commit comments

Comments
 (0)