dransible/tools/ansible/deploy/after-symlink-shared.yml
2020-06-15 22:49:33 +01:00

14 lines
307 B
YAML

---
- name: Install Drupal
command: |
{{ release_drush_path }} site-install -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 }}'