Skip to content
Snippets Groups Projects
Commit 0f295cbb authored by jurgenhaas's avatar jurgenhaas
Browse files

ansible-playbooks/general#72 Replace all include with include_tasks

parent bd66b347
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@
tags: always
- name: "Configure Apache"
include: apache.yml
include_tasks: apache.yml
with_items: '{{ drupal.domains }}'
loop_control:
loop_var: drupal_domain
......@@ -80,7 +80,7 @@
with_items: '{{ drupal.links|default([]) }}'
tags: 'deploy'
- include: scss.yml
- include_tasks: scss.yml
with_items: '{{ drupal.scss_dir|default([]) }}'
loop_control:
loop_var: scss_dir
......@@ -115,7 +115,7 @@
with_items: '{{ drupal.domains }}'
when: item.install|default(true)
- include: files.yml
- include_tasks: files.yml
with_nested:
- '{{ drupal.domains }}'
- ['files', 'private']
......@@ -201,7 +201,7 @@
tags: 'deploy'
- name: "Install Drupal Databases and Users"
include: mysql.yml
include_tasks: mysql.yml
with_items: '{{ drupal.domains }}'
loop_control:
loop_var: drupal_domain
......
......@@ -7,7 +7,7 @@
- block:
- name: "Install Certs"
include: '../../letsencrypt/tasks/cert.yml'
include_tasks: '../../letsencrypt/tasks/cert.yml'
with_subelements:
- '{{ drupal_settings }}'
- domains
......@@ -20,7 +20,7 @@
- block:
- name: "Install Drupal"
include: install.yml
include_tasks: install.yml
with_items: '{{ drupal_settings }}'
loop_control:
loop_var: drupal
......@@ -30,7 +30,7 @@
- block:
- name: "Collect Drupal Configuration"
include: collect_config/main.yml
include_tasks: collect_config/main.yml
with_items: '{{ drupal_settings }}'
loop_control:
loop_var: drupal
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment