2020-02-07 07:43:17 +00:00
|
|
|
---
|
|
|
|
- name: Install Composer dependencies
|
|
|
|
composer:
|
|
|
|
command: install
|
|
|
|
working_dir: '{{ ansistrano_release_path.stdout }}'
|
|
|
|
|
|
|
|
- name: Generate settings.php file
|
|
|
|
include_role:
|
2020-02-19 00:55:32 +00:00
|
|
|
name: opdavies.drupal_settings_files
|
2020-02-08 00:24:26 +00:00
|
|
|
|
|
|
|
- name: Import configuration
|
2020-02-19 00:58:41 +00:00
|
|
|
command: '{{ release_drush_path }} config-import -y'
|
|
|
|
args:
|
|
|
|
chdir: '{{ release_web_path }}'
|
2020-02-08 00:24:26 +00:00
|
|
|
|
|
|
|
- name: Run database updates
|
2020-02-19 00:58:41 +00:00
|
|
|
command: '{{ release_drush_path }} updatedb -y'
|
|
|
|
args:
|
|
|
|
chdir: '{{ release_web_path }}'
|
2020-02-08 00:24:26 +00:00
|
|
|
|
|
|
|
- name: Rebuild cache
|
2020-02-19 00:58:41 +00:00
|
|
|
command: '{{ release_drush_path }} cache-rebuild'
|
|
|
|
args:
|
|
|
|
chdir: '{{ release_web_path }}'
|