Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • ansible/roles/drupal
  • max/drupal
  • ericzillmann/drupal
3 results
Show changes
......@@ -3,12 +3,33 @@
- block:
- name: Set facts
- name: Set facts for updates
set_fact:
artefact_directories:
- src: '{{ webRoot }}/drush'
dest: '{{ tempDeployRoot }}/drush'
- src: '{{ webRoot }}/drush/drush.yml'
dest: '{{ tempDeployRoot }}/drush/drush.yml'
reset: true
- src: '{{ webRoot }}/drush/sites'
dest: '{{ tempDeployRoot }}/drush/sites'
reset: true
- src: '{{ webRoot }}/files'
dest: '{{ tempDeployRoot }}/files'
reset: true
- src: '{{ webRoot }}/settings'
dest: '{{ tempDeployRoot }}/settings'
reset: true
- src: '{{ webRoot }}/web/sites/default'
dest: '{{ tempDeployRoot }}/web/sites/default'
reset: true
- src: '{{ webRoot }}'
dest: '{{ tempDeployRoot }}-old'
- src: '{{ tempDeployRoot }}'
dest: '{{ webRoot }}'
when: not drupal_first_installation
- name: Set facts first installation
set_fact:
artefact_directories:
- src: '{{ webRoot }}/files'
dest: '{{ tempDeployRoot }}/files'
reset: true
......@@ -22,6 +43,7 @@
dest: '{{ tempDeployRoot }}-old'
- src: '{{ tempDeployRoot }}'
dest: '{{ webRoot }}'
when: drupal_first_installation
- name: Reset destination directories
file:
......