Release 10.0.0 #100

Manually merged
jlecour merged 321 commits from unstable into stable 2020-05-13 11:25:49 +02:00
2 changed files with 4 additions and 1 deletions
Showing only changes of commit 4acd61a072 - Show all commits

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)