dransible/tools/ansible/deploy/after-symlink-shared.yml
2019-12-05 16:09:58 +00:00

13 lines
299 B
YAML

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