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

Finalize script drupal-data-copy

parent a57217ae
No related branches found
No related tags found
No related merge requests found
...@@ -3,43 +3,37 @@ ...@@ -3,43 +3,37 @@
- block: - block:
- name: Set facts without jails - name: Set facts without jails
set_fact: set_fact:
webRoot: /var/www{{ drupal.webRoot|default("") }} webRoot: /var/www{{ drupal.webRoot|default("") }}
cronUser: root apacheUser: www-data
apacheUser: www-data when: drupal.jail is not defined
apacheLogDir: /var/log/apache2
drushSubkey: '{{ drupal.drush_subkey|default("") }}'
when: drupal.jail is not defined
- name: Set facts with jails - name: Set facts with jails
set_fact: set_fact:
webRoot: '{{ jailroot }}/{{ drupal.jail.name }}/var/www{{ drupal.webRoot|default("") }}' webRoot: '{{ jailroot }}/{{ drupal.jail.name }}/var/www{{ drupal.webRoot|default("") }}'
cronUser: '{{ drupal.jail.name }}' apacheUser: '{{ drupal.jail.name }}'
apacheUser: '{{ drupal.jail.name }}' when: drupal.jail is defined
apacheLogDir: '{{ jailroot }}/{{ drupal.jail.name }}/var/log/apache2'
drushSubkey: .{{ drupal.jail.name }}
when: drupal.jail is defined
- name: Execute Drush Commands - name: Execute Drush Commands
shell: drush -y {{ item }} shell: drush -y {{ item }}
args: args:
chdir: '{{ webRoot }}' chdir: '{{ webRoot }}'
with_items: with_items:
- sql:sync --create-db @{{ drupal.id }}.{{ branch }} @{{ drupal.id }}.{{ destination_branch }} - sql:sync --create-db @{{ drupal.id }}_stages.{{ branch }} @{{ drupal.id }}_stages.{{ destination_branch }}
- rsync @{{ drupal.id }}.{{ branch }}:%files/ @{{ drupal.id }}.{{ destination_branch }}:%files -- --chown={{ apacheUser }}:{{ apacheUser }} --safe-links --max-size=20M - rsync @{{ drupal.id }}_stages.{{ branch }}:%files/ @{{ drupal.id }}_stages.{{ destination_branch }}:%files -- --chown={{ apacheUser }}:{{ apacheUser }} --safe-links
- cr - cache-rebuild
- updatedb - updatedb
- config-import sync - config-import sync
- name: Set files ownership - name: Set files ownership
file: file:
path: '{{ webRoot }}/files' path: '{{ webRoot }}/files'
owner: '{{ apacheUser }}' owner: '{{ apacheUser }}'
group: '{{ apacheUser }}' group: '{{ apacheUser }}'
mode: ug+rw mode: ug+rw
recurse: yes recurse: yes
follow: no follow: no
tags: tags:
- copy_db_and_assets - copy_db_and_assets
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