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

ansible-roles/drupal#10 Implement execution of post deploy tasks

parent 1129f4b1
No related branches found
No related tags found
No related merge requests found
......@@ -8,28 +8,22 @@ drupal_config_directories:
drupal_post_deploy_tasks:
d6:
- 'pull-data'
- 'pre-processing'
- 'registry-rebuild'
- 'dev-modules {{ (drupal.dev_mode|default("False"))|ternary("on","off") }}'
- 'updatedb'
- 'cache-clear all'
- 'dev-modules {{ (drupal.dev_mode|default(false))|ternary("on","off") }}'
d7:
- 'pull-data'
- 'pre-processing'
- 'registry-rebuild'
- 'dev-modules {{ (drupal.dev_mode|default("False"))|ternary("on","off") }}'
- 'features-revert-all'
- 'updatedb'
- 'cache-clear all'
- 'dev-modules {{ (drupal.dev_mode|default(false))|ternary("on","off") }}'
d8:
- 'pull-data'
- 'pre-processing'
- 'cache-rebuild all'
- 'dev-modules {{ (drupal.dev_mode|default("False"))|ternary("on","off") }}'
- 'config-import sync'
- 'updatedb'
- 'entity-updates'
- 'dev-modules {{ (drupal.dev_mode|default(false))|ternary("on","off") }}'
letsencrypt_pause_services:
- 'apache2'
......@@ -23,3 +23,19 @@
composer:
command='update'
working_dir='{{ webRoot }}'
# The following is a workaround until Drupal's packaging supports libraries, see https://www.drupal.org/node/2474007
- name: "Ensure Drush Contrib Directory"
file:
path: '{{ webRoot }}/drush/contrib'
state: 'directory'
owner: 'root'
group: 'root'
- name: "Link all global Drush commands"
file:
src='{{ composer_home_path }}/vendor/drush/drush/commands/{{ item|regex_replace("(.*)(\-\d\.x\-\d\.x)", "\\1") }}'
dest='{{ webRoot }}/drush/contrib/{{ item|regex_replace("(.*)(\-\d\.x\-\d\.x)", "\\1") }}'
state='link'
with_items: '{{ drush_extra_commands }}'
......@@ -7,12 +7,14 @@
cronUser='root'
apacheUser='www-data'
apacheLogDir='/var/log/apache2'
drushSubkey='{{ drupal.drush_subkey|default("") }}'
when: drupal.jail is not defined
- set_fact:
webRoot='{{ jailroot }}/{{ drupal.jail.name }}/var/www{{ drupal.webRoot|default("") }}'
cronUser='{{ drupal.jail.name }}'
apacheUser='{{ drupal.jail.name }}'
apacheLogDir='{{ jailroot }}/{{ drupal.jail.name }}/var/log/apache2'
drushSubkey='.{{ drupal.jail.name }}'
when: drupal.jail is defined
- set_fact:
installSource={{ drupal.src|default([]) }}
......@@ -195,3 +197,8 @@
with_items: '{{ drupal.domains }}'
loop_control:
loop_var: drupal_domain
- name: "Run Post Deploy Tasks"
shell: drush -y @{{ inventory_hostname }}{{ drushSubkey }} {{ item }}
with_items: '{{ drupal_post_deploy_tasks[drupal.version|default("d7")] }}'
tags: 'deploy'
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