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
Select Git revision
  • 2331-combine1
  • 2331-combine1-from-master
  • 2331-combine2
  • 2331-combine2-from-master
  • 2331-expressions-using-if
  • 2838-cronjobs-per-host
  • 2838-crontabs-collector
  • 2861-path-password-protection-without-general-pw
  • 2898-service-status
  • main
10 results

Target

Select target project
  • ansible/roles/drupal
  • max/drupal
  • ericzillmann/drupal
3 results
Select Git revision
  • 2331-combine1
  • 2331-combine1-from-master
  • 2331-combine2
  • 2331-combine2-from-master
  • 2331-expressions-using-if
  • 2838-cronjobs-per-host
  • 2838-crontabs-collector
  • 2861-path-password-protection-without-general-pw
  • 2898-service-status
  • main
10 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:
......