Skip to content
Snippets Groups Projects
Commit 6975cb3d authored by Thomas Schneider's avatar Thomas Schneider
Browse files

Merge branch 'replace-include' into 'master'

replace generic include keyword

See merge request !41
parents 0637d3a4 fb11f0be
No related branches found
No related tags found
1 merge request!41replace generic include keyword
Pipeline #4339 passed
......@@ -84,13 +84,13 @@
- mediawiki
- webservices
- include: postgres.yml
- import_tasks: postgres.yml
when: mediawiki_dbtype == "postgres"
- include: mysql.yml
- import_tasks: mysql.yml
when: mediawiki_dbtype == "mysql"
- include: ldap.yml
- import_tasks: ldap.yml
when: mediawiki_use_ldap
- name: ensure we are running maintenance regularly
......
......@@ -67,11 +67,11 @@
- "{{ app.instance }}"
- block:
- include: sqlite.yml
- include_tasks: sqlite.yml
when: app_db_type == "sqlite"
- include: mysql.yml
- include_tasks: mysql.yml
when: app_db_type == "mysql"
- include: postgres.yml
- include_tasks: postgres.yml
when: app_db_type == "postgres"
when: app_db_type is defined
tags:
......
......@@ -140,4 +140,4 @@
- wordpress
- webservices
- include: mysql.yml
- import_tasks: mysql.yml
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment