ansible-roles/packweb-apache
Mathieu Trossevin 7c632352a0
Replace the include module with include_tasks or import_tasks
The behaviour of the `include` module is badly defined (it try to choose
between statically importing the tasks and dynamically including them)
and can cause problems depending on any number of constraints (mostly if
it choose the wrong behaviour).

Replace it with the `import_tasks` (always statically import tasks) unless
the `include` is in a loop in which case we replace it with
`include_tasks` (always dynamically include tasks).
2023-01-03 14:43:42 +01:00
..
defaults packweb-apache: Automagically bootstrap the multiphp containers 2020-04-01 17:17:00 +02:00
files packweb-apache/files/userlogrotate: tfix (comments). 2022-07-19 17:24:04 +02:00
handlers WIP: More things done for packweb... 2017-07-03 17:56:59 +02:00
meta packweb-apache: manual dependencies resolution 2022-11-06 15:25:17 +01:00
tasks Replace the include module with include_tasks or import_tasks 2023-01-03 14:43:42 +01:00
templates packweb-apache: install phpMyAdmin from buster-backports 2021-07-02 21:18:06 +02:00
README.md packweb-apache can use MySQL from Oracle. 2018-02-28 17:25:47 +01:00

packweb-apache

Install the web pack, with Apache.

Tasks

See tasks/main.yml.

Available variables

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.