packweb-apache can use MySQL from Oracle.

This commit is contained in:
Jérémy Lecour 2018-02-28 17:24:44 +01:00 committed by Jérémy Lecour
parent 738d56db68
commit ace68db4b4
4 changed files with 6 additions and 1 deletions

View file

@ -15,6 +15,7 @@ The **patch** part changes incrmentally at each release.
* nagios-nrpe: add "check_open_files" plugin
* nagios-nrpe: mark plugins as executable
* mysql-oracle: new role to install MySQL 5.7 with Oracle packages
* packweb-apache: choose mysql variant (default: `debian`)
### Changed
* elasticsearch: use ES_TMPDIR variable for custom tmpdir, (from `/etc/default/elasticsearch` instead of changing `/etc/elesticsearch/jvm.options`).

View file

@ -11,5 +11,6 @@ See `tasks/main.yml`.
Main variables are :
* `packweb_enable_evoadmin_vhost` : enable VirtualHost for evoadmin (web interface to create web accounts)
* `packweb_mysql_variant`: which Variant to use for MySQL (`debian` or `oracle`, default: `debian`)
The full list of variables (with default values) can be found in `defaults/main.yml`.

View file

@ -8,3 +8,5 @@ packweb_apache_modphp: True
packweb_apache_fpm: False
packweb_phpmyadmin_suffix: ""
packweb_mysql_variant: "debian"

View file

@ -16,4 +16,5 @@ galaxy_info:
dependencies:
- { role: squid, squid_localproxy_enable: True }
- mysql
- { role: mysql, when: packweb_mysql_variant == "debian" }
- { role: mysql-oracle, when: packweb_mysql_variant == "oracle" }