dransible/tools/ansible/deploy/after-symlink-shared.yml
Oliver Davies f26c3fbd7d Revert "Update to Drupal 9"
Revert back so that we can continue to use the Config Installer module.

This reverts commit e5b86c7f39.
2020-06-16 21:53:55 +01:00

14 lines
322 B
YAML

---
- name: Install Drupal
command: |
{{ release_drush_path }} site-install config_installer -y
--account-pass=admin123
args:
chdir: '{{ release_drupal_path }}'
when: drupal_install
- name: Rebuild cache
command: '{{ release_drush_path }} cache-rebuild'
args:
chdir: '{{ release_drupal_path }}'