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

Elgg upgrade 1.12.16 LTS to 2.3.3; Nextcloud - add php's zip mbstring (#202)

* add mbstring for debian

* add php7.0-zip

* capture a few fixes

* put in new sqldump
This commit is contained in:
georgejhunt 2017-09-04 09:23:54 -07:00 committed by GitHub
parent f1ea2eb788
commit 7d576bbe0c
4 changed files with 33 additions and 31 deletions

View file

@ -1,5 +1,5 @@
elgg_xx: elgg elgg_xx: elgg
elgg_version: "1.12.16" elgg_version: "2.3.3"
# elgg_mysql_password: defined in default_vars # elgg_mysql_password: defined in default_vars
elgg_url: /elgg elgg_url: /elgg

View file

@ -55,7 +55,7 @@
# The name of this file changed from 1.9 to 1.10. # The name of this file changed from 1.9 to 1.10.
- name: Copy default .htaccess to the root directory of elgg tree - name: Copy default .htaccess to the root directory of elgg tree
copy: src="/opt/{{ elgg_xx }}/install/config/htaccess.dist" copy: src="/opt/{{ elgg_xx }}/vendor/elgg/elgg/install/config/htaccess.dist"
dest="/opt/{{ elgg_xx }}/.htaccess" dest="/opt/{{ elgg_xx }}/.htaccess"
mode=0644 mode=0644
owner={{ apache_user }} owner={{ apache_user }}
@ -75,7 +75,7 @@
#- use template to fix up settings in engine/settings.php with our variables substituted into engine/settings.example.php #- use template to fix up settings in engine/settings.php with our variables substituted into engine/settings.example.php
- name: Substitute our parameters in engine/settings.example.php - name: Substitute our parameters in engine/settings.example.php
template: src="settings.php.j2" template: src="settings.php.j2"
dest="/opt/{{ elgg_xx }}/engine/settings.php" dest="/opt/{{ elgg_xx }}/elgg-config/settings.php"
owner={{ apache_user }} owner={{ apache_user }}
- name: Install config file for elgg in Apache - name: Install config file for elgg in Apache

File diff suppressed because one or more lines are too long

View file

@ -20,6 +20,8 @@
package: name={{ item }} state=present package: name={{ item }} state=present
with_items: with_items:
- libapache2-mod-php{{ php_version }} - libapache2-mod-php{{ php_version }}
- php{{ php_version }}-mbstring
- php{{ php_version }}-zip
when: is_debian when: is_debian
- name: ubuntu and debian treat names differently - name: ubuntu and debian treat names differently