dransible/tools/ansible/deploy/after-symlink-shared.yml

14 lines
322 B
YAML
Raw Normal View History

2019-12-05 12:16:37 +00:00
---
- name: Install Drupal
command: |
{{ release_drush_path }} site-install config_installer -y
--account-pass=admin123
args:
chdir: '{{ release_drupal_path }}'
when: drupal_install
2019-12-05 12:16:37 +00:00
- name: Rebuild cache
command: '{{ release_drush_path }} cache-rebuild'
args:
chdir: '{{ release_drupal_path }}'