generate-ldif: support MariaDB 10.3

This commit is contained in:
Jérémy Lecour 2019-09-02 10:39:25 +02:00 committed by Jérémy Lecour
parent 02415b7a2c
commit 4acd61a072
2 changed files with 4 additions and 1 deletions

View File

@ -17,6 +17,7 @@ The **patch** part changes incrementally at each release.
* packweb-apache: Deploy opcache.php to give some insights on PHP's opcache status
* webapps/evoadmin-web Overload templates if needed
* redis: max clients is configurable
* generate-ldif: support MariaDB 10.3
### Changed
* elasticsearch: listen on local interface only by default

View File

@ -373,7 +373,9 @@ EOT
fi
# MariaDB
if is_pkg_installed mariadb-server-10.1; then
if is_pkg_installed mariadb-server-10.3; then
mariadb_version=$(get_pkg_version mariadb-server-10.3)
elif is_pkg_installed mariadb-server-10.1; then
mariadb_version=$(get_pkg_version mariadb-server-10.1)
elif is_pkg_installed mariadb-server-10.0; then
mariadb_version=$(get_pkg_version mariadb-server-10.0)