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

Delay Apache configuration such that auth passwords get created after the code...

Delay Apache configuration such that auth passwords get created after the code has been deployed which sometimes requires the directory to be absent or empty
parent 37f90106
No related branches found
No related tags found
No related merge requests found
......@@ -23,13 +23,6 @@
docRoot='{{ webRoot }}{{ drupal.docroot|default(drupal.root|default("")) }}'
tags: 'always'
- name: "Configure Apache"
include_tasks: apache.yml
with_items: '{{ drupal.domains }}'
loop_control:
loop_var: drupal_domain
tags: 'ApacheConfig'
- name: "Ensure Drupal Root Directory"
file:
path='{{ docRoot }}'
......@@ -81,6 +74,13 @@
with_items: '{{ drupal.links|default([]) }}'
tags: 'deploy'
- name: "Configure Apache"
include_tasks: apache.yml
with_items: '{{ drupal.domains }}'
loop_control:
loop_var: drupal_domain
tags: 'ApacheConfig'
- include_tasks: scss.yml
with_items: '{{ drupal.scss_dir|default([]) }}'
loop_control:
......
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